BITFALL/Assets/GSpawn - Level Designer/Scripts/UI/UIRefresh.cs

12 lines
216 B
C#
Raw Normal View History

2024-01-27 04:09:57 +08:00
#if UNITY_EDITOR
namespace GSpawn
{
public static class UIRefresh
{
public static void refreshShortcutToolTips()
{
PluginInspectorUI.instance.refresh();
}
}
}
#endif