示例#1
0
 // Token: 0x06000D1A RID: 3354 RVA: 0x00009BE5 File Offset: 0x00007DE5
 public Moderation(MemberAccessLevel level, ModerationPanelGUI.Actions id, string title, string context, string option, Action <ModerationPanelGUI.Moderation, Rect> draw, GUIContent[] subselection)
 {
     this.Level        = level;
     this.ID           = id;
     this.Title        = title;
     this.Content      = context;
     this.Draw         = draw;
     this.SubSelection = subselection;
 }
示例#2
0
 // Token: 0x06000D15 RID: 3349 RVA: 0x0005A840 File Offset: 0x00058A40
 private void SelectModeration(ModerationPanelGUI.Actions id)
 {
     this._moderationSelection = id;
     for (int i = 0; i < this._moderations.Count; i++)
     {
         if (id != this._moderations[i].ID)
         {
             this._moderations[i].Selected = false;
         }
     }
 }
示例#3
0
 // Token: 0x06000D19 RID: 3353 RVA: 0x00009BD3 File Offset: 0x00007DD3
 public Moderation(MemberAccessLevel level, ModerationPanelGUI.Actions id, string title, string context, string option, Action <ModerationPanelGUI.Moderation, Rect> draw) : this(level, id, title, context, option, draw, null)
 {
 }