Files
Temp.BattleRoyale.Map.Unity/Assets/GSpawn - Level Designer/Scripts/UI/Grid View/IGridView.cs
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

10 lines
204 B
C#

#if UNITY_EDITOR
namespace GSpawn
{
public interface IGridView
{
int dragAndDropInitiatorId { get; }
System.Object dragAndDropData { get; }
}
}
#endif