CheckDeviceType.cs 241 B

12345678910111213
  1. using SC.XR.Unity;
  2. using SC.XR.Unity.Module_Device;
  3. using System.Collections;
  4. using System.Collections.Generic;
  5. using UnityEngine;
  6. public class CheckDeviceType
  7. {
  8. public static bool checkIsPhone()
  9. {
  10. return false;
  11. }
  12. }