initital initial commit

This commit is contained in:
Atlas48
2020-01-30 17:21:29 +00:00
parent 0d3c8a8320
commit 78ba7275ef
91 changed files with 10447 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
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
}
}
}