Ejemplo n.º 1
0
 public Aircraft(Bitmap bitmap, ScenePoints points) : base(bitmap, points)
 {
 }
Ejemplo n.º 2
0
 public Missile(Bitmap bitmap, ScenePoints points, bool isHit)
     : base(bitmap, points)
 {
     this.isHit = isHit;
 }
Ejemplo n.º 3
0
 public MovableSceneObject(Bitmap bitmap, ScenePoints points)
 {
     Bitmap   = bitmap;
     Points   = points;
     MaxIndex = points.Count - 1;
 }