2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-05 09:59:36 +00:00

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
+12
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)
{
}
+13
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);
};