您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

26 行
385 B

  1. using System;
  2. using SUISSEngine;
  3. public class AppInfo : IAppInfo
  4. {
  5. public int GetApplicationBuildNumber()
  6. {
  7. return 26088;
  8. }
  9. public string GetApplicationId()
  10. {
  11. return CIGLoadingScreen.SparkSocGamesApplicationId;
  12. }
  13. public string GetApplicationUrlScheme()
  14. {
  15. return "cig3free";
  16. }
  17. public string GetApplicationVersion()
  18. {
  19. return "3.0.6";
  20. }
  21. }