14 lines
229 B
C#
Raw Normal View History

2020-03-11 21:11:27 +01:00
using UnityAtoms.FSM;
using UnityEngine;
public class KillPlayer : MonoBehaviour
{
[SerializeField]
private FiniteStateMachineReference _gameStateRef;
void Awake()
{
// _gameStateRef.Machine.
}
}