Change folder structure, add solution to the root.
This commit is contained in:
11
DaggerFramework/Source/SceneGraph/IMainLoop.cs
Normal file
11
DaggerFramework/Source/SceneGraph/IMainLoop.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace DaggerFramework.SceneGraph
|
||||
{
|
||||
public interface IMainLoop
|
||||
{
|
||||
public void Init();
|
||||
public void Start();
|
||||
public bool ShouldStop();
|
||||
public void Update();
|
||||
public double DeltaTime { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user