Zeplin.ZeplinGame.ZeplinGame C# (CSharp) 메소드

ZeplinGame() 공개 메소드

A ZeplinGame encapsulates the XNA Framework.
When a ZeplinGame is created, it will initialize the engine. Therefore, only one ZeplinGame should be created.
public ZeplinGame ( ) : Microsoft.Xna.Framework
리턴 Microsoft.Xna.Framework
        public ZeplinGame()
        {
            graphics = new GraphicsDeviceManager(this);
            ContentManager = Content;
            drawQueue = new DrawQueue();
            Content.RootDirectory = "Content";
            ResourceContent = new ResourceContentManager(this.Services, EngineResources.ResourceManager);
            //this.IsFixedTimeStep = false;
        }