API renames, change ref renderer to in renderer in IDrawable, make Layer implement IDrawable.

This commit is contained in:
2023-06-15 22:39:34 +02:00
parent bf4fb6e1e3
commit 964b903500
18 changed files with 122 additions and 67 deletions

View File

@@ -7,12 +7,11 @@ namespace DaggerFramework
{
LoadResources();
OnStart();
MainLoop();
}
protected abstract void OnStart();
protected abstract void LoadResources();
protected abstract void MainLoop();
public abstract void Shutdown();
protected Scene scene;
}
}