public void Heal(SpaceShip SpaceShip) => SpaceShip.Energy += 5;
 public void Draw(Graphics g, SpaceShip SpaceShip)
 {
     g.DrawString($"POINTS: {Points} \nHP: {SpaceShip.Energy}", new Font("Arial", 16), new SolidBrush(Color.White), _Position.X, _Position.Y);
 }
Beispiel #3
0
 public PlayerStats(SpaceShip Player)
 {
     _Player = Player;
 }