Ejemplo n.º 1
0
 protected Mouse(MouseStrategy strategy)
     : base(true)
 {
     if(strategy == null) throw new ArgumentNullException("strategy");
     _strategy = strategy;
 }
Ejemplo n.º 2
0
 public UglyMouse(MouseStrategy strategy)
     : base(strategy)
 {
 }