Zeplin.ZeplinGame.ZeplinGame C# (CSharp) Method

ZeplinGame() public method

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
return 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;
        }