Ejemplo n.º 1
0
 static void Main()
 {
     Callbacks c = new Callbacks();
     Application.EnableVisualStyles();
     Application.SetCompatibleTextRenderingDefault(false);
     Application.Run(new StartForm(ref c));
 }
Ejemplo n.º 2
0
 public StartForm(ref Callbacks c)
 {
     InitializeComponent();
     this.c = c;
     btnStart.Visible = false;
     c.SetStartForm(this);
 }
Ejemplo n.º 3
0
 public EndGameForm(ref Callbacks call, string Clientname)
 {
     InitializeComponent();
     clientname = Clientname;
     c = call;
 }
Ejemplo n.º 4
0
 public TriviaForm(ref Callbacks call)
 {
     InitializeComponent();
     this.
     c = call;
 }