mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
12 lines
258 B
C#
12 lines
258 B
C#
|
using UnityEditor;
|
|||
|
|
|||
|
namespace TriInspectorUnityInternalBridge
|
|||
|
{
|
|||
|
internal static class EditorProxy
|
|||
|
{
|
|||
|
public static void DoDrawDefaultInspector(SerializedObject obj)
|
|||
|
{
|
|||
|
Editor.DoDrawDefaultInspector(obj);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|