You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
427 B

  1. using System;
  2. using UnityEngine;
  3. public static class NativeGameVersion
  4. {
  5. public static string Version
  6. {
  7. get
  8. {
  9. return "3.0.6";
  10. }
  11. }
  12. public static int Build
  13. {
  14. get
  15. {
  16. return 26088;
  17. }
  18. }
  19. public static string GameTitle
  20. {
  21. get
  22. {
  23. return "City Island 3";
  24. }
  25. }
  26. }