mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-25 17:38:24 -05:00
14 lines
229 B
C#
14 lines
229 B
C#
|
using UnityAtoms.FSM;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class KillPlayer : MonoBehaviour
|
|||
|
{
|
|||
|
[SerializeField]
|
|||
|
private FiniteStateMachineReference _gameStateRef;
|
|||
|
|
|||
|
void Awake()
|
|||
|
{
|
|||
|
// _gameStateRef.Machine.
|
|||
|
}
|
|||
|
}
|