using System.Collections.Generic; namespace Gravity.Kernel; public static class Core { public static Base Base; public static List LoadedScenes => Base.LoadedScenes; public static List ScriptingHooks; //hooks are called in order public static void Start(List __hooks) { ScriptingHooks = __hooks; Base = new Base(); Base.Run(); } }