Skip to content

Commit

Permalink
Rename *Inspector to *Editor
Browse files Browse the repository at this point in the history
  • Loading branch information
sschmid committed Jul 28, 2023
1 parent 4e80f9b commit 11c2514
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Entitas.Unity.Editor
{
[CustomEditor(typeof(ContextObserverBehaviour))]
public class ContextObserverInspector : UnityEditor.Editor
public class ContextObserverEditor : UnityEditor.Editor
{
public override void OnInspectorGUI()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
namespace Entitas.Unity.Editor
{
[CustomEditor(typeof(DebugSystemsBehaviour))]
public class DebugSystemsInspector : UnityEditor.Editor
public class DebugSystemsEditor : UnityEditor.Editor
{
enum SortMethod
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Entitas.Unity.Editor
{
[CustomEditor(typeof(EntityBehaviour)), CanEditMultipleObjects]
public class EntityInspector : UnityEditor.Editor
public class EntityEditor : UnityEditor.Editor
{
public override void OnInspectorGUI()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Entitas.Unity.Editor
{
[CustomEditor(typeof(EntityLink))]
public class EntityLinkInspector : UnityEditor.Editor
public class EntityLinkEditor : UnityEditor.Editor
{
public override void OnInspectorGUI()
{
Expand Down

0 comments on commit 11c2514

Please sign in to comment.