예제 #1
0
        public static void Init()
        {
            Log.Info("Initializing Sparky System...");
            MemoryManager.Init();
            VFS.Init();

            info.memoryInfo = MemoryManager.Get.SystemInfo;
            LogSystemInfo();
        }
예제 #2
0
파일: VFS.cs 프로젝트: Itay2805/SparkySharp
 public static void Shutdown()
 {
     instance = null;
 }
예제 #3
0
파일: VFS.cs 프로젝트: Itay2805/SparkySharp
 public static void Init()
 {
     instance = new VFS();
 }
예제 #4
0
 public static void Shutdown()
 {
     Log.Info("Shutting down Sparky System...");
     VFS.Shutdown();
     MemoryManager.Shutdown();
 }