更改了文件结构
This commit is contained in:
20
Src/Unity/Scripts/Addressable/AddressableHelper.cs
Normal file
20
Src/Unity/Scripts/Addressable/AddressableHelper.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using Object = UnityEngine.Object;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public class AddressableHelper
|
||||
{
|
||||
public static string GetAddressablePath(Object obj)
|
||||
{
|
||||
#if UNITY_EDITOR
|
||||
return string.Empty;
|
||||
#else
|
||||
throw new NotImplementedException();
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user