- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class PottingMobileServices :
- // Choose base class based on target platform...
- #if UNITY_EDITOR
- PottingMobileServicesEditor
- #elif UNITY_ANDROID
- PottingMobileServicesAndroid
- #else
- PottingMobileServicesiOS
- #endif
- {
- }
|