public Player(Game6 game) { this.game = game; timer = new TimeSpan(0); // position = new Vector2(50, 400); state = State.Idle; testmanRec = new Rectangle(50, 400, 75, 75); }
static void Main() { using (var game = new Game6()) game.Run(); }
public Enemy(Game6 game) { this.game = game; }