コード例 #1
0
ファイル: Game1.cs プロジェクト: charlie-a-maxwell/CardGame
 public Game1()
 {
     graphics = new GraphicsDeviceManager(this);
     graphics.PreferredDepthStencilFormat = DepthFormat.Depth24Stencil8;
     Content.RootDirectory = "Content";
     sm = new ScreenManager();
     go = new GameOptions();
     entities = new List<Entity>(110);
 }
コード例 #2
0
ファイル: Screen.cs プロジェクト: charlie-a-maxwell/CardGame
 public void SetScreenManager(ScreenManager sm)
 {
     manager = sm;
 }