Ejemplo n.º 1
0
 public void Draw(IAsteroids asteroids, IShip ship, IScore score)
 {
     this.Screen.Draw(this.Asteroids, this.Ship, this.Score);
 }
Ejemplo n.º 2
0
 public void Draw(IAsteroids asteroids, IShip ship, IScore score)
 {
     Console.WriteLine("Drawing screen.");
 }
Ejemplo n.º 3
0
 public void RegisterAsteroids(IAsteroids asteroids)
 {
     this.Asteroids = asteroids;
 }