您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 

24 行
307 B

  1. using System;
  2. using UnityEngine;
  3. public abstract class PlatformActive : MonoBehaviour
  4. {
  5. public PlatformActive.Platform CurrentPlatform
  6. {
  7. get
  8. {
  9. return PlatformActive.Platform.Android;
  10. }
  11. }
  12. public enum Platform
  13. {
  14. None,
  15. IOS,
  16. Android,
  17. CafeBazaar,
  18. OSX,
  19. WSA
  20. }
  21. }