You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
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 |
|
} |
|
} |
|
} |