Added base Round Logic and base map with characters
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using UnityEngine;
|
||||
|
||||
public class VFXDestroyer : MonoBehaviour
|
||||
{
|
||||
[SerializeField] float destroyDelay = 1f;
|
||||
|
||||
void Start()
|
||||
{
|
||||
Destroy(gameObject, destroyDelay);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user