Example #1
0
 public void SwitchStatus(Type nextStatus)
 {
     if (availableStatuses.TryGetValue(nextStatus, out BaseStatus value))
     {
         currentStatus = value;
         currentStatus.OnEnable();
     }
 }