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