コード例 #1
0
ファイル: Agent.cs プロジェクト: SinanEmiroglu/GatherBot
 public void SwitchStatus(Type nextStatus)
 {
     if (availableStatuses.TryGetValue(nextStatus, out BaseStatus value))
     {
         currentStatus = value;
         currentStatus.OnEnable();
     }
 }