|
- using System;
- using UnityEngine;
-
- public abstract class PlatformActive : MonoBehaviour
- {
- public PlatformActive.Platform CurrentPlatform
- {
- get
- {
- return PlatformActive.Platform.Android;
- }
- }
-
- public enum Platform
- {
- None,
- IOS,
- Android,
- CafeBazaar,
- OSX,
- WSA
- }
- }
|