mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-28 07:37:51 -05:00
14 lines
172 B
C++
14 lines
172 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class GdtVersion
|
|
{
|
|
public:
|
|
std::string m_game;
|
|
int m_version;
|
|
|
|
GdtVersion();
|
|
GdtVersion(std::string game, int version);
|
|
};
|