using System.Collections; using System.Collections.Generic; using UnityEngine; public class FrozenCharacterController : MonoBehaviour { public static FrozenCharacterController Instance { get { return instance; } } private static FrozenCharacterController instance; private void Awake() { instance = this; } }