11 lines
215 B
C#
11 lines
215 B
C#
namespace DaggerFramework.SceneGraph
|
|
{
|
|
public interface IMainLoop
|
|
{
|
|
void Init();
|
|
void Start();
|
|
void Update();
|
|
double DeltaTime { get; }
|
|
bool ShouldRun { get; }
|
|
}
|
|
} |