PlatformTapManager.cs 543 B

1234567891011121314151617181920
  1. using TapTap.Bootstrap;
  2. using TapTap.Common;
  3. namespace GFGGame
  4. {
  5. public class PlatformTapManager
  6. {
  7. public static void InitSDK()
  8. {
  9. var config = new TapConfig.Builder()
  10. .ClientID("K7bDyPGYlVx2AAtk6q")
  11. .ClientToken("fjwWBtibB4Dj3UjyRQxK2tZ3f8fGNgg14tcRW38D")
  12. .ServerURL("https://k7bdypgy.cloud.tds1.tapapis.cn")
  13. .RegionType(RegionType.CN)
  14. .ConfigBuilder();
  15. TapBootstrap.Init(config);
  16. }
  17. }
  18. }