Beispiel #1
0
 public Radar (GameShip ship, float radius)
 {
     this.Bounding = new BoundingCircle(ship, radius);
 }
Beispiel #2
0
 public PlayerController(GameEntity e)
 {
     _ship = (GameShip)e;
     Input.LeftMouseHold += NormalAttack;
 }