mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
make MlemGame.cs use some more sensible defaults
This commit is contained in:
parent
3f36093957
commit
64749c31ce
1 changed files with 5 additions and 4 deletions
|
@ -21,15 +21,16 @@ namespace MLEM.Startup {
|
|||
public TimeCallback OnUpdate;
|
||||
public TimeCallback OnDraw;
|
||||
|
||||
public MlemGame(int windowWidth = 1280, int windowHeight = 720, bool vsync = false, bool allowResizing = true, string contentDir = "Content") {
|
||||
public MlemGame(int windowWidth = 1280, int windowHeight = 720) {
|
||||
instance = this;
|
||||
|
||||
this.GraphicsDeviceManager = new GraphicsDeviceManager(this) {
|
||||
PreferredBackBufferWidth = windowWidth,
|
||||
PreferredBackBufferHeight = windowHeight,
|
||||
SynchronizeWithVerticalRetrace = vsync
|
||||
HardwareModeSwitch = false
|
||||
};
|
||||
this.Content.RootDirectory = contentDir;
|
||||
this.Window.AllowUserResizing = allowResizing;
|
||||
this.Window.AllowUserResizing = true;
|
||||
this.Content.RootDirectory = "Content";
|
||||
}
|
||||
|
||||
protected override void LoadContent() {
|
||||
|
|
Loading…
Reference in a new issue