Esempio n. 1
0
 public Player(Desk desk, ColorType color)
 {
     this.Color       = color;
     this._desk       = desk;
     this.LightPoints = new List <Point>();
 }
Esempio n. 2
0
 public ComputerIntelect(Desk desk, ColorType color)
     : base(desk, color)
 {
     this._desk = Desk;
 }