Exemplo n.º 1
0
 private TextButton AddButton(int y, string text)
 {
     var btn = new TextButton();
     btn.Font = Root.Singleton.Font("fonts/JustinFont12Bold.ttf");
     btn.Scale = 0.475f;
     btn.X = 25;
     btn.Y = y;
     btn.Text = text;
     btn.Parent = Window;
     btn.Init();
     return btn;
 }