mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-27 23:01:55 +00:00
Add Gdt parsing
This commit is contained in:
12
src/ObjCommon/Obj/Gdt/GdtVersion.cpp
Normal file
12
src/ObjCommon/Obj/Gdt/GdtVersion.cpp
Normal 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
src/ObjCommon/Obj/Gdt/GdtVersion.h
Normal file
13
src/ObjCommon/Obj/Gdt/GdtVersion.h
Normal 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);
|
||||
};
|
Reference in New Issue
Block a user