i put a whole SIX minutes of effort into this commit!

This commit is contained in:
Sylvia 2026-09-07 14:54:30 -07:00
parent 9304861963
commit 813a8c2a5c
5 changed files with 24 additions and 8 deletions

View file

@ -8,6 +8,12 @@ public class MicroGameHandler : MonoBehaviour
public int score;
public int minimumScore;
public bool loseOnTimeLimit;
private void Start()
{
StartGame();
}
private void Update()
{
currentTime -= Time.deltaTime;
@ -34,4 +40,9 @@ public class MicroGameHandler : MonoBehaviour
{
}
public virtual void StartGame()
{
}
}