예제 #1
0
파일: Program.cs 프로젝트: mRB0/skeet
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (SkeetGame game = new SkeetGame())
     {
         game.Run();
     }
 }
예제 #2
0
파일: SkeetObject.cs 프로젝트: mRB0/skeet
        public SkeetObject(SkeetGame game)
        {
            this.__msgbox = new List<string>();
            __mut_msgbox = new Mutex();

            this._game = game;
        }
예제 #3
0
파일: Player.cs 프로젝트: mRB0/skeet
        public Player(SkeetGame game, String who)
            : base(game)
        {
            _sprite_idx = 0;
            _sprite_animwait = 0;

            this._whoami = who;

            _falling = false;
        }
예제 #4
0
파일: Sprite.cs 프로젝트: mRB0/skeet
 public Sprite(SkeetGame game)
     : base(game)
 {
     this._game = game;
 }