Ejemplo n.º 1
0
        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);
        }
Ejemplo n.º 2
0
 static void Main()
 {
     using (var game = new Game6())
         game.Run();
 }
Ejemplo n.º 3
0
 public Enemy(Game6 game)
 {
     this.game = game;
 }