diff --git a/.gitignore b/.gitignore index 034fda7..b635e3b 100644 --- a/.gitignore +++ b/.gitignore @@ -358,4 +358,5 @@ MigrationBackup/ # Ignore all local history of files .history -# End of https://www.gitignore.io/api/csharp,visualstudiocode \ No newline at end of file +# End of https://www.gitignore.io/api/csharp,visualstudiocode +**/*.code-workspace diff --git a/RecrownedGTK.code-workspace b/RecrownedGTK.code-workspace deleted file mode 100644 index deb4dca..0000000 --- a/RecrownedGTK.code-workspace +++ /dev/null @@ -1,17 +0,0 @@ -{ - "folders": [ - { - "path": "RecrownedGTK" - }, - { - "path": "RecrownedGTK.Tools" - }, - { - "path": "RecrownedGTK.Tests" - }, - { - "path": "RecrownedGTK.Tools.Tests" - } - ], - "settings": {} -} \ No newline at end of file diff --git a/RecrownedGTK/Game.cs b/RecrownedGTK/Game.cs deleted file mode 100644 index 58202e4..0000000 --- a/RecrownedGTK/Game.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace RecrownedGTK { - public class Game { - public Game() { - //TODO Implement interface that calls the users created game files. - } - } -} \ No newline at end of file diff --git a/RecrownedGTK/GameManager.cs b/RecrownedGTK/GameManager.cs new file mode 100644 index 0000000..6bc5700 --- /dev/null +++ b/RecrownedGTK/GameManager.cs @@ -0,0 +1,20 @@ +using OpenTK; +namespace RecrownedGTK.Game { + public class GameManager : GameWindow { + public GameManager() : base() { + //TODO Implement interface that calls the users created game files. + } + + protected override void OnUpdateFrame(FrameEventArgs e) { + base.OnUpdateFrame(e); + } + + protected override void OnRenderFrame(FrameEventArgs e) { + base.OnRenderFrame(e); + } + + protected override void OnClosed(System.EventArgs e) { + base.OnClosed(e); + } + } +} \ No newline at end of file