Files
Temp.BattleRoyale.Map.Unity/Assets/GSpawn - Level Designer/Scripts/Level Design/Object Spawn/ObjectSpawnGuideMono.cs

12 lines
260 B
C#
Raw Normal View History

2024-05-13 01:28:33 +08:00
#if UNITY_EDITOR
using UnityEngine;
namespace GSpawn
{
// Note: Attached to the spawn guide in order to easily find it in the scene
// and remove it for cleanup purposes.
public class ObjectSpawnGuideMono : MonoBehaviour
{
}
}
#endif