mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-23 08:48:21 -05:00
13 lines
267 B
C#
13 lines
267 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace TriInspector.Editors
|
|
{
|
|
#if TRI_INSPECTOR
|
|
[CanEditMultipleObjects]
|
|
[CustomEditor(typeof(MonoBehaviour), true, isFallback = true)]
|
|
internal sealed class MonoBehaviourEditor : TriEditor
|
|
{
|
|
}
|
|
#endif
|
|
} |