Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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
-
-
- }
|