Esempio n. 1
0
 public Logger(InstanceManager im)
 {
     this.im         = im;
     this.ifLog      = false;
     this.ifBuildLog = false;
 }
Esempio n. 2
0
 public Timer(InstanceManager im)
 {
     this.im    = im;
     this.timer = new List <TimerDelegate>();
     this.work  = false;
 }
Esempio n. 3
0
 public UIHelper(InstanceManager im)
 {
     this.im = im;
 }
Esempio n. 4
0
 public DataHelper(InstanceManager im)
 {
     this.gunInfoDict = new Dictionary <int, GunInfo>();
     this.im          = im;
 }
Esempio n. 5
0
 public UserLogin(InstanceManager im)
 {
     this.im = im;
 }
Esempio n. 6
0
 public Logger(InstanceManager im)
 {
     this.ifLog = true;
     this.im    = im;
     fs         = new FileStream(logFileName, FileMode.Append);
 }
Esempio n. 7
0
 public UpdateManager(InstanceManager im)
 {
     this.im = im;
 }
Esempio n. 8
0
 public ServerHelper(InstanceManager im)
 {
     this.im         = im;
     this.serverList = new Dictionary <string, string>();
 }
Esempio n. 9
0
 public ServerHelper(InstanceManager im)
 {
     this.im         = im;
     this.serverList = new List <Models.ServerInfo>();
 }