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,13 @@
#pragma once
#include <string>
class GdtVersion
{
public:
std::string m_game;
int m_version;
GdtVersion();
GdtVersion(std::string game, int version);
};