mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
13 lines
284 B
C#
13 lines
284 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace TriInspectorUnityInternalBridge
|
|
{
|
|
internal static class EditorGUIUtilityProxy
|
|
{
|
|
public static Texture2D GetHelpIcon(MessageType type)
|
|
{
|
|
return EditorGUIUtility.GetHelpIcon(type);
|
|
}
|
|
}
|
|
} |