private ContadorBalas()
        {
            Size screenSize = GuiController.Instance.Panel3d.Size;
            juego = Juego.Instance;

            indicadorBala = new Indicadores();
            indicadorCargador = new Indicadores();

            texto = new TgcText2d();
            texto.Color = Color.Red;
            texto.Align = TgcText2d.TextAlign.LEFT;

            int tamañoTexturaBala = (int)indicadorBala.getPosicionXSpriteBala();
            texto.Position = new Point(tamañoTexturaBala + 25, screenSize.Height - 32);
            texto.Size = new Size(350, 500);
            texto.changeFont(new System.Drawing.Font("Arial", 16f, FontStyle.Bold));

            textoCargador = new TgcText2d();
            textoCargador.Color = Color.Red;
            textoCargador.Align = TgcText2d.TextAlign.LEFT;

            int tamañoTexturaCargador = (int)indicadorBala.getPosicionXSpriteCargador();
            textoCargador.Position = new Point(tamañoTexturaCargador + 190, screenSize.Height - 32);
            textoCargador.Size = new Size(350, 100);
            textoCargador.changeFont(new System.Drawing.Font("Arial", 16f, FontStyle.Bold));

            setInitialValues();
        }