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