TO SQUASH: Lots of UI.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using UnityEngine;
|
||||
|
||||
public abstract class Spawner : MonoBehaviour
|
||||
{
|
||||
protected bool isSpawning = true;
|
||||
|
||||
public void StopSpawning()
|
||||
{
|
||||
isSpawning = false;
|
||||
}
|
||||
|
||||
public void StartSpawning()
|
||||
{
|
||||
isSpawning = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user