Beispiel #1
0
 protected DrawDecorator(IDrawDecorator drawing, List <MinimalShip> _tempShips)
 {
     this.drawing    = drawing;
     this._tempShips = _tempShips;
 }
 public CannonDecorator(IDrawDecorator drawing, List <MinimalShip> _tempShips) : base(drawing, _tempShips)
 {
     Cannon = ProxyImageFactory.GetProxyImage(@"..\..\cannon.png");
 }