20 lines
332 B
C#
20 lines
332 B
C#
|
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 () {
|
||
|
}
|
||
|
}
|
||
|
}
|