You've already forked taptap2024_GJ_chidouren
20 lines
334 B
Plaintext
20 lines
334 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using XFFSM;
|
|
|
|
public class {0} : FSMState
|
|
{
|
|
public override void OnEnter()
|
|
{
|
|
base.OnEnter();
|
|
Debug.Log("{0} OnEnter");
|
|
}
|
|
|
|
public override void OnExit()
|
|
{
|
|
base.OnExit();
|
|
Debug.Log("{0} OnExit");
|
|
}
|
|
}
|