コード例 #1
0
ファイル: Logger.cs プロジェクト: team-imasara/GFHelper
 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
ファイル: UserLogin.cs プロジェクト: team-imasara/V2
 public UserLogin(InstanceManager im)
 {
     this.im = im;
 }
コード例 #6
0
ファイル: Logger.cs プロジェクト: jackjieS/GFHelper
 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
ファイル: ServerHelper.cs プロジェクト: jackjieS/GFHelper
 public ServerHelper(InstanceManager im)
 {
     this.im         = im;
     this.serverList = new Dictionary <string, string>();
 }
コード例 #9
0
ファイル: ServerHelper.cs プロジェクト: team-imasara/GFHelper
 public ServerHelper(InstanceManager im)
 {
     this.im         = im;
     this.serverList = new List <Models.ServerInfo>();
 }