コード例 #1
0
ファイル: BasFSM.cs プロジェクト: BeTheBase/KernModuleGameDev
 public void Update()
 {
     if (currentState != null)
     {
         currentState.Run();
     }
 }