1
Fork 0
slime-blood-and-pain/Assets/Plugins/GitHub/Editor/UnityAPIWrapper.cs

20 lines
436 B
C#
Raw Normal View History

2019-04-28 16:52:37 +00:00
using UnityEditor;
using UnityEngine;
using System.IO;
using System;
namespace GitHub.Unity
{
[InitializeOnLoad]
public class UnityAPIWrapper : ScriptableSingleton<UnityAPIWrapper>
{
static UnityAPIWrapper()
{
#if UNITY_2018_2_OR_NEWER
Editor.finishedDefaultHeaderGUI += editor => {
UnityShim.Raise_Editor_finishedDefaultHeaderGUI(editor);
};
#endif
}
}
}