Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- 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
-
-
- }
|