JinChanChan/Packages/com.arongranberg.astar/Drawing/Editor/DrawingManagerEditor.cs

20 lines
332 B
C#
Raw Normal View History

2025-02-26 16:54:54 +08:00
using UnityEngine;
using System.Collections;
using UnityEditor;
namespace Pathfinding.Drawing {
[CustomEditor(typeof(DrawingManager))]
public class DrawingManagerEditor : Editor {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
void OnSceneGUI () {
}
}
}