예제 #1
0
 public void SetUp(string name, ModuleManager.Category category)
 {
     this.name     = name;
     this.category = category;
     this.moduleSettings.Add(bind);
     this.moduleSettings.Add(enabled);
 }
예제 #2
0
 public void SetUp(string name, ModuleManager.Category category, KeyCode bindSet)
 {
     this.name     = name;
     this.category = category;
     bind.Bind     = bindSet;
     this.moduleSettings.Add(bind);
     this.moduleSettings.Add(enabled);
 }
예제 #3
0
 public WindowElement(ModuleManager.Category category, Color color, Rect windowRect)
 {
     this.Category   = category;
     this.Colour     = color;
     this.windowRect = windowRect;
 }