Files
BITFALL/Assets/Plugins/GSpawn - Level Designer/Scripts/Commands/IPluginCommand.cs
2024-08-11 16:16:31 +08:00

10 lines
143 B
C#

#if UNITY_EDITOR
namespace GSpawn
{
public interface IPluginCommand
{
void enter ();
void exit ();
}
}
#endif