Exemplo n.º 1
0
 static void Main(string[] args)
 {
     Login log;
     using (Game1 game = new Game1())
     {
         log = new Login();
         Application.EnableVisualStyles();
         Application.Run(new Form1(log));
         if (log.accepted)
             game.Run();
     }
 }
Exemplo n.º 2
0
 public Form1(Login log)
 {
     this.log = log;
     InitializeComponent();
 }