i put a whole SIX minutes of effort into this commit!
This commit is contained in:
parent
9304861963
commit
813a8c2a5c
5 changed files with 24 additions and 8 deletions
|
|
@ -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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue