First commit

This commit is contained in:
2021-07-19 08:45:00 +02:00
parent ac360a55be
commit 648c82389e
82 changed files with 4704 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
}
}
}