Minor .gitignore change. Also begun work on skeleton for game manager.
Skeleton for basic game manager. updated .gitignore. Untracking workspace metadata.
This commit is contained in:
parent
8d78993400
commit
20f67886bc
1
.gitignore
vendored
1
.gitignore
vendored
@ -359,3 +359,4 @@ MigrationBackup/
|
||||
.history
|
||||
|
||||
# End of https://www.gitignore.io/api/csharp,visualstudiocode
|
||||
**/*.code-workspace
|
||||
|
@ -1,17 +0,0 @@
|
||||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "RecrownedGTK"
|
||||
},
|
||||
{
|
||||
"path": "RecrownedGTK.Tools"
|
||||
},
|
||||
{
|
||||
"path": "RecrownedGTK.Tests"
|
||||
},
|
||||
{
|
||||
"path": "RecrownedGTK.Tools.Tests"
|
||||
}
|
||||
],
|
||||
"settings": {}
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
namespace RecrownedGTK {
|
||||
public class Game {
|
||||
public Game() {
|
||||
//TODO Implement interface that calls the users created game files.
|
||||
}
|
||||
}
|
||||
}
|
20
RecrownedGTK/GameManager.cs
Normal file
20
RecrownedGTK/GameManager.cs
Normal file
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user