16 lines
303 B
C#
16 lines
303 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
|
|
[CustomEditor(typeof(Demo.Game.GameController), true)]
|
|
public class GameControllerEditor : Convention.AbstractCustomEditor
|
|
{
|
|
|
|
}
|
|
|
|
[CustomEditor(typeof(Demo.Editor.EditorController), true)]
|
|
public class EditorControllerEditor : Convention.AbstractCustomEditor
|
|
{
|
|
|
|
}
|