2024-11-19 11:48:21 +01:00

28 lines
424 B
C#

#if UNITY_EDITOR
#region "Imports"
using UnityEditor;
#endregion
namespace RoadArchitect
{
[CustomEditor(typeof(SplineI))]
public class SplineIEditor : Editor
{
private SplineI splineI;
private void OnEnable()
{
splineI = (SplineI)target;
}
public override void OnInspectorGUI()
{
//Intentionally left empty.
}
}
}
#endif