예제 #1
0
 public Player(string nm, int num, Rectangle loc)
     : base(loc)
 {
     number = num;
     controls = new Control();
     SetUp(nm, loc);
 }
예제 #2
0
 public Player(string nm, PlayerIndex num, Rectangle loc)
     : base(loc)
 {
     pi = num;
     controls = new Control(num);
     SetUp(nm, loc);
 }