Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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
-
-
- }
|