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