Esempio n. 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (SkeetGame game = new SkeetGame())
     {
         game.Run();
     }
 }
Esempio n. 2
0
        public SkeetObject(SkeetGame game)
        {
            this.__msgbox = new List<string>();
            __mut_msgbox = new Mutex();

            this._game = game;
        }
Esempio n. 3
0
File: Player.cs Progetto: mRB0/skeet
        public Player(SkeetGame game, String who)
            : base(game)
        {
            _sprite_idx = 0;
            _sprite_animwait = 0;

            this._whoami = who;

            _falling = false;
        }
Esempio n. 4
0
File: Sprite.cs Progetto: mRB0/skeet
 public Sprite(SkeetGame game)
     : base(game)
 {
     this._game = game;
 }