예제 #1
0
파일: Framework.cs 프로젝트: f64dev/gfcore
        private static async Task ReleaseContext()
        {
            await Systems.RemoveSystem <ContextManager>();

            Context = null;
        }
예제 #2
0
파일: Framework.cs 프로젝트: f64dev/gfcore
        private static async Task InitContext()
        {
            Context = await Systems.AddSystemAsync <ContextManager>();

            await Context.SetContext(Setup.StartContext);
        }