void Update()
 {
     if (ImGui.IsKeyDown((int)ImGuiKey.End))
     {
         if (m_Explorer.IsOpen == false)
         {
             m_Explorer.Open();
         }
         else
         {
             m_Explorer.Close();
         }
         Debug.Log("Explorer State:" + m_Explorer.IsOpen);
     }
 }
        static void Main(string[] args)
        {
            RuntimeExplorerApp explorer = RuntimeExplorerApp.Instance;

            //Auto Add Untiy Assembly
            List <string> unityAssemblyList = SeachUnityAssembly(".");

            foreach (string assemblyPath in unityAssemblyList)
            {
                explorer.LoadAssembly(assemblyPath);
            }

            explorer.LoadAssembly("ImGui.NET.dll");
            explorer.Open();
            //explorer.Run();
            Console.ReadLine();
        }