You've already forked taptap2024_GJ_chidouren
18 lines
434 B
C#
18 lines
434 B
C#
using Framework.FSMLite;
|
|
using Framework.UI;
|
|
|
|
namespace Game.FsmNode
|
|
{
|
|
public class GameRevert : StateMachine<GameState>
|
|
{
|
|
protected override void OnEnter (params object[] args)
|
|
{
|
|
this.stateMachineRunner.OpenState (GameState.StartGame);
|
|
}
|
|
|
|
protected override void OnExit ()
|
|
{
|
|
UIManager.Instance.CloseViewWithGroup (this.GetType ().FullName);
|
|
}
|
|
}
|
|
} |