Bug.Display.Label.Label C# (CSharp) Метод

Label() публичный Метод

public Label ( int x, int y, SpriteFont font_, String text_ ) : Microsoft.Xna.Framework
x int
y int
font_ Microsoft.Xna.Framework.Graphics.SpriteFont
text_ String
Результат Microsoft.Xna.Framework
        public Label(int x, int y, SpriteFont font_, String text_)
            : base(x, y)
        {
            font = font_;
            text = text_;
        }