Files

10 lines
204 B
C#
Raw Permalink Normal View History

2024-01-27 04:09:57 +08:00
#if UNITY_EDITOR
namespace GSpawn
{
public interface IGridView
{
int dragAndDropInitiatorId { get; }
System.Object dragAndDropData { get; }
}
}
#endif