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