示例#1
0
 // Token: 0x06000056 RID: 86 RVA: 0x00006AEC File Offset: 0x00004CEC
 public static void SetCustomDungeonFlag(CustomDungeonFlags flag, bool value)
 {
     GameStatsManager.Instance.SetFlag(CustomGungeonFlagsManager.GetGungeonFlagForCustomDungeonFlag(flag), value);
 }
示例#2
0
 // Token: 0x06000057 RID: 87 RVA: 0x00006B04 File Offset: 0x00004D04
 public static bool GetCustomDungeonFlag(CustomDungeonFlags flag)
 {
     return(GameStatsManager.Instance.GetFlag(CustomGungeonFlagsManager.GetGungeonFlagForCustomDungeonFlag(flag)));
 }
示例#3
0
 // Token: 0x06000187 RID: 391 RVA: 0x00014114 File Offset: 0x00012314
 public static bool GetFlag(this GameStatsManager manager, CustomDungeonFlags flag)
 {
     return(CustomGungeonFlagsManager.GetCustomDungeonFlag(flag));
 }
示例#4
0
 // Token: 0x06000189 RID: 393 RVA: 0x00014144 File Offset: 0x00012344
 public static void SetupUnlockOnFlag(this PickupObject self, CustomDungeonFlags flag, bool requiredFlagValue)
 {
     self.SetupUnlockOnFlag(CustomGungeonFlagsManager.GetGungeonFlagForCustomDungeonFlag(flag), requiredFlagValue);
 }
示例#5
0
 // Token: 0x06000184 RID: 388 RVA: 0x000140F0 File Offset: 0x000122F0
 public static void SetFlag(this GameStatsManager manager, CustomDungeonFlags flag, bool value)
 {
     CustomGungeonFlagsManager.SetCustomDungeonFlag(flag, value);
 }