v2019.08.19

This commit is contained in:
pypy
2019-08-19 23:21:08 +09:00
parent d725c8f1e3
commit 26b371fd0f
19 changed files with 768 additions and 515 deletions

View File

@@ -53,15 +53,19 @@ namespace VRCX
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
CpuMonitor.Start();
VRCXStorage.Load();
VRCXVR.Setup();
VRCX_LogWatcher.Start();
SQLite.Init();
CpuMonitor.Init();
Discord.Init();
LogWatcher.Init();
VRCXVR.Init();
Application.Run(new MainForm());
VRCX_LogWatcher.Stop();
VRCXVR.Stop();
VRCXVR.Exit();
LogWatcher.Exit();
Discord.Exit();
CpuMonitor.Exit();
SQLite.Exit();
VRCXStorage.Save();
CpuMonitor.Stop();
Cef.Shutdown();
}
}