Added GitHub for Unity

This commit is contained in:
Furentes
2019-04-05 08:58:25 +02:00
parent acc0ebd15d
commit 2e74c3e35e
73 changed files with 3695 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
}
}
}