subGameObject.AddComponent(new ButtonComponent(tmp[0][2], tmp[0][3]));
subGameObject.AddComponent(new AudioComponent("data/sound/click.wav"));
subGameObject.AddComponent(new PauseComponent());
gui.addGameObject(subGameObject);
LabelComponent label = null;
GameObject time = new GameObject("Time");
label = new LabelComponent(" ");
time.transform.getLocalPosition().add(100* Cactus2DApplication.invCameraZoom, 80* Cactus2DApplication.invCameraZoom);
label.setFontName(TerremotoApplication.fontName);
time.AddComponent(label);
time.AddComponent(new SpriteRendererComponent(null));
time.spriteRenderer.gui = true;
gui.addGameObject(time);
GameObject points = new GameObject("Points");
label = new LabelComponent(" ");
points.transform.getLocalPosition().add(300* Cactus2DApplication.invCameraZoom, 80* Cactus2DApplication.invCameraZoom);
label.setFontName(TerremotoApplication.fontName);
points.AddComponent(label);
points.AddComponent(new SpriteRendererComponent(null));
points.spriteRenderer.gui = true;
gui.addGameObject(points);