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