mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-24 21:57:54 -05:00
Rename GDT to Gdt to keep naming schema
This commit is contained in:
19
src/ObjCommon/Obj/Gdt/GdtEntry.cpp
Normal file
19
src/ObjCommon/Obj/Gdt/GdtEntry.cpp
Normal file
@ -0,0 +1,19 @@
|
||||
#include "GdtEntry.h"
|
||||
|
||||
GdtEntry::GdtEntry()
|
||||
: m_parent(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
GdtEntry::GdtEntry(std::string name, std::string gdfName)
|
||||
: m_name(std::move(name)),
|
||||
m_gdf_name(std::move(gdfName)),
|
||||
m_parent(nullptr)
|
||||
{
|
||||
}
|
||||
|
||||
GdtEntry::GdtEntry(std::string name, GdtEntry* parent)
|
||||
: m_name(std::move(name)),
|
||||
m_parent(parent)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user