mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 00:08:51 -05:00
11 lines
268 B
C#
11 lines
268 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace TriInspector.Editors
|
|
{
|
|
[CanEditMultipleObjects]
|
|
[CustomEditor(typeof(MonoBehaviour), editorForChildClasses: true, isFallback = true)]
|
|
internal sealed class TriMonoBehaviourEditor : TriEditor
|
|
{
|
|
}
|
|
} |