選択できるのは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. }