Exemple #1
0
 public void RegisterPlatformCreator(string identifier, PlatformCreatorCallback callback)
 {
     this.platforms[identifier] = new PlatformService.PlatformEntry(this, callback);
 }
Exemple #2
0
 public PlatformEntry(PlatformService platformService, PlatformCreatorCallback callback)
 {
     this.platformService = platformService;
     this.callback        = callback;
 }