Files
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

11 lines
255 B
C#

#if UNITY_EDITOR
namespace GSpawn
{
public interface IUIItemStateProvider
{
bool uiSelected { get; set; }
CopyPasteMode uiCopyPasteMode { get; set; }
PluginGuid guid { get; }
}
}
#endif