Ejemplo n.º 1
0
 public GameCore()
 {
     this.isLoaded         = false;
     this.core             = new FMCore(DatabaseModeEnum.Realtime);
     this.QueryService     = new QueryService(this.core);
     this.core.GameLoaded += this.OnLoaded;
 }
Ejemplo n.º 2
0
 public GameCore()
 {
     this.isLoaded = false;
     this.core = new FMCore(DatabaseModeEnum.Realtime);
     this.QueryService = new QueryService(this.core);
     this.core.GameLoaded += this.OnLoaded;
 }
 public QueryService(FMCore core)
 {
     this.core          = core;
     this.configuration = new Configuration();
     this.mockService   = new MockService();
 }
Ejemplo n.º 4
0
 public QueryService(FMCore core)
 {
     this.core = core;
     this.configuration = new Configuration();
     this.mockService = new MockService();
 }