コード例 #1
0
ファイル: Util.cs プロジェクト: pr00thmatic/Hotel-Tucciato
 public static WallType Next(WallType type)
 {
     return((WallType)
            (((int)type + 1) % WallType.GetValues(typeof(WallType)).Length));
 }