mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-30 16:21:51 +00:00
Split InfoString classes into multiple files depending on loading and writing code
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
#include "InfoStringToStructConverter.h"
|
||||
|
||||
#include <cassert>
|
||||
|
||||
using namespace T6;
|
||||
|
||||
void InfoStringToStructConverter::FillStructure()
|
||||
{
|
||||
}
|
||||
|
||||
InfoStringToStructConverter::InfoStringToStructConverter(const InfoString& infoString, void* structure,
|
||||
const cspField_t* fields, const size_t fieldCount)
|
||||
: InfoStringToStructConverterBase(infoString, structure),
|
||||
m_fields(fields),
|
||||
m_field_count(fieldCount)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user