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

            Systems = null;
        }
예제 #2
0
파일: Framework.cs 프로젝트: f64dev/gfcore
 private static async Task InitSystems()
 {
     Systems = new GFSystemManager();
     await Systems.InitAsync();
 }