HMCLauncher: try bundled JRE

This commit is contained in:
huanghongxun
2019-02-08 22:05:16 +08:00
parent f0c7f54cc6
commit 426ea607e8
12 changed files with 375 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <string>
class Version
{
public:
int ver[4];
Version(const std::wstring &rawString);
bool operator<(const Version &other) const
{
for (int i = 0; i < 4; ++i)
if (ver[i] != other.ver[i])
return ver[i] < other.ver[i];
return false;
}
};