25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- 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
-
-
- }
|