seperate out tick and render update calls

This commit is contained in:
2024-01-07 14:37:33 +01:00
parent 96bab0200f
commit 75e7c5e3c7
5 changed files with 56 additions and 10 deletions

View File

@@ -39,6 +39,8 @@ struct PluginManager {
bool add(const std::string& plug_path);
void tick(float delta);
// returns the minimum time until next call is wanted in seconds
float tick(float delta);
float render(float delta);
};