udSDKAPI.cs 266 B

123456789101112131415
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using UnityEngine;
  4. namespace udSDK
  5. {
  6. static class UDSDKLibrary
  7. {
  8. #if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
  9. public const string name = "udSDK";
  10. #else
  11. public const string name = "udSDK";
  12. #endif
  13. }
  14. }