This commit is contained in:
2024-10-16 00:03:41 +08:00
commit 897058435c
5033 changed files with 1009728 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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.RelaxGame);
}
protected override void OnExit ()
{
UIManager.Instance.CloseViewWithGroup (this.GetType ().FullName);
}
}
}