mirror of
https://github.com/zoriya/Skillfight.git
synced 2026-05-13 19:34:58 +00:00
10 lines
144 B
C#
10 lines
144 B
C#
using UnityEngine;
|
|
|
|
public class PlayerNotFound : MonoBehaviour {
|
|
|
|
public void Done()
|
|
{
|
|
gameObject.SetActive(false);
|
|
}
|
|
}
|