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:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user