Basic round loop done

This commit is contained in:
gamer147
2023-08-03 11:45:09 -04:00
parent 39b9f71801
commit 686edc85a3
4 changed files with 59 additions and 8 deletions

View File

@@ -21,7 +21,8 @@ public abstract class Minigame : Entity
/// <summary>
/// Once a minigame is loaded and initialized, this method is called once per server tick.
/// </summary>
public abstract void Tick();
/// <returns>true if the minigame has ended, false otherwise</returns>
public abstract bool Tick();
/// <summary>
/// Cleans up any entities and components created by this minigame.