using System.Collections; using System.Collections.Generic; using UnityEngine; public class GameConfig { #if UNITY_ANDROID public static RuntimePlatform platform = RuntimePlatform.Android; #elif UNITY_IPHONE public static RuntimePlatform platform = RuntimePlatform.IPhonePlayer; #else public static RuntimePlatform platform = RuntimePlatform.WebGLPlayer; #endif }