private BazaarGamesPlatform(BazaarGamesClientConfiguration configuration)
 {
     Debug.Log("Creating new BazaarGamesPlatform");
     this.mLocalUser     = new BazaarGamesLocalUser(this);
     this.mConfiguration = configuration;
     BazaarGamesHelperObject.CreateObject();
 }
 internal BazaarGamesPlatform(IBazaarGamesClient client)
 {
     this.mClient        = client;
     this.mLocalUser     = new BazaarGamesLocalUser(this);
     this.mConfiguration = BazaarGamesClientConfiguration.DefaultConfiguration;
 }