public GameFormController(Game game,Person _user,string _t1,string _t2,string _t3)
 {
     t1 = _t1;
     t2 = _t2;
     t3 = _t3;
     user = _user;
     gform=new GameForm(game,user,t1,t2,t3);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GameFormController"/> class.
 /// </summary>
 /// <param name="game">New game</param>
 /// <param name="newUser">New user</param>
 /// <param name="newt1">New text 1</param>
 /// <param name="newt2">New text 2</param>
 /// <param name="newt3">New text 3</param>
 public GameFormController(Game game, Person newUser, string newt1, string newt2, string newt3)
 {
     this.t1 = newt1;
     this.t2 = newt2;
     this.t3 = newt3;
     this.user = newUser;
     this.gform = new GameForm(game, this.user, this.t1, this.t2, this.t3);
 }
 public GameFormController(Game game, Person _user, string _t1, string _t2, string _t3)
 {
     t1    = _t1;
     t2    = _t2;
     t3    = _t3;
     user  = _user;
     gform = new GameForm(game, user, t1, t2, t3);
 }
 public GameFormController()
 {
     gform=new GameForm(this);
 }
 public GameFormController()
 {
     gform = new GameForm(this);
 }