コード例 #1
0
ファイル: Player.cs プロジェクト: zdepav/into-the-blaze
 public void Initialize(LevelScreen levelScreen, IntoTheBlaze game)
 {
     this.levelScreen = levelScreen;
     this.game        = game;
     Position         = Vector2.Zero;
     rotation         = 90;
     Reset();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: zdepav/into-the-blaze
 static void Main()
 {
     using (var game = new IntoTheBlaze())
         game.Run();
 }