fixes for PascalCase

This commit is contained in:
Mike
2019-09-07 22:39:37 -07:00
parent 3e0088aabf
commit 8b3bd76f9e
3 changed files with 20 additions and 21 deletions

6
project_name/Game1.cs Normal file → Executable file
View File

@@ -16,11 +16,11 @@ namespace project_name
System.Diagnostics.Debug.Listeners.Add(new System.Diagnostics.TextWriterTraceListener(System.Console.Out));
#endif
scene = new DefaultScene();
Scene = new DefaultScene();
// optionally render Nez in an ImGui window
var imGuiManager = new ImGuiManager();
Core.registerGlobalManager(imGuiManager);
Core.RegisterGlobalManager(imGuiManager);
}
}
}
}