コード例 #1
0
ファイル: WorldClock.cs プロジェクト: yazici/FRONTIERS
 public static bool IsTimeOfYear(TimeOfYear timeOfYear)
 {
     return(Flags.Check((uint)SeasonCurrent, (uint)timeOfYear, Flags.CheckType.MatchAny));
 }
コード例 #2
0
ファイル: WorldClock.cs プロジェクト: yazici/FRONTIERS
 public static bool IsTimeOfDay(TimeOfDay timeOfDay)
 {
     return(Flags.Check((uint)timeOfDay, (uint)gTimeOfDayCurrent, Flags.CheckType.MatchAll));
 }