9 lines
168 B
C#
9 lines
168 B
C#
|
using UnityEngine;
|
||
|
|
||
|
public class NearestPlayerCheckerSingleton : MonoBehaviour
|
||
|
{
|
||
|
public bool debugPrintInfo;
|
||
|
|
||
|
public static NearestPlayerCheckerSingleton instance;
|
||
|
}
|