mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
12 lines
266 B
C++
12 lines
266 B
C++
#include "StructuredDataDefParserState.h"
|
|
|
|
using namespace sdd;
|
|
|
|
StructuredDataDefParserState::StructuredDataDefParserState()
|
|
: m_current_def(nullptr),
|
|
m_current_enum(nullptr),
|
|
m_current_struct(nullptr),
|
|
m_current_struct_offset_in_bits(0u)
|
|
{
|
|
}
|