- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PottingMobileUtils :
- // Choose base class based on target platform...
- #if UNITY_EDITOR
- PottingMobileUtilsEditor
- #elif UNITY_ANDROID
- PottingMobileUtilsAndroid
- #else
- PottingMobileUtilsiOS
- #endif
- {
- }
|