コード例 #1
0
ファイル: SettingsConverter.cs プロジェクト: x360ce/x360ce
        public static MapType ToFull(MapType type)
        {
            var i = SettingHalf.IndexOf(type);

            if (i > -1)
            {
                return(SettingFull[i]);
            }
            return(type);
        }
コード例 #2
0
ファイル: SettingsConverter.cs プロジェクト: x360ce/x360ce
 public static bool IsHalf(MapType type)
 => SettingHalf.Contains(type);