예제 #1
0
파일: Minion.cs 프로젝트: Wiciaki/EloBuddy
        public static bool IsMinion(this AIMinionType type)
        {
            switch (type)
            {
            case AIMinionType.Normal:
            case AIMinionType.Siege:
            case AIMinionType.Super:
                return(true);

            default:
                return(false);
            }
        }
예제 #2
0
파일: Minion.cs 프로젝트: Wiciaki/EloBuddy
 public static bool IsJungle(this AIMinionType type)
 {
     return(type == AIMinionType.Jungle || type == AIMinionType.JungleBoss);
 }