11 lines
255 B
C#
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 |