diff options
author | chai <215380520@qq.com> | 2023-06-13 19:14:40 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-06-13 19:14:40 +0800 |
commit | 6cd3c00b0b1b0a76b690ad0d978ae265de43a371 (patch) | |
tree | 1004e09d96a5a12841443b72adb44a90bbd8d2e7 /WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs | |
parent | e8049efa4a0b462b04e3087402c8485c70432de9 (diff) |
*misc
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs')
-rw-r--r-- | WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs b/WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs new file mode 100644 index 0000000..ddad500 --- /dev/null +++ b/WorldlineKeepers/Assets/Scripts/Phase/GamePhaseBase.cs @@ -0,0 +1,35 @@ +using Microsoft.Unity.VisualStudio.Editor; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.UI; + +namespace WK +{ + + public class GamePhaseBase : AsyncStatemachine.State + { + protected GamePhaseManager owner = GamePhaseManager.Instance; + + public override IEnumerator<float> OnStart() + { + yield break; + } + + public override IEnumerator<float> OnEnd() + { + yield break; + } + + public override void OnUpdate(float deltaTime) + { + } + + protected void GotoStage(EGamePhase target) + { + owner.AsyncLoadPhase(target); + } + + } + +} |