Add Gdt parsing

This commit is contained in:
Jan
2021-03-06 09:28:14 +01:00
parent abb268a819
commit 78ebeaaa7b
10 changed files with 640 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include "GdtVersion.h"
GdtVersion::GdtVersion()
: m_version(0)
{
}
GdtVersion::GdtVersion(std::string game, const int version)
: m_game(std::move(game)),
m_version(version)
{
}

View File

@ -0,0 +1,13 @@
#pragma once
#include <string>
class GdtVersion
{
public:
std::string m_game;
int m_version;
GdtVersion();
GdtVersion(std::string game, int version);
};