XPlor/libs/xassets/xcardmemory.cpp

29 lines
334 B
C++
Raw Normal View History

2025-08-17 13:14:17 -04:00
#include "xcardmemory.h"
XCardMemory::XCardMemory()
: XAsset()
, mPlatform(0)
{
}
XCardMemory::~XCardMemory()
{
}
2025-09-07 12:36:08 -04:00
quint32 XCardMemory::GetPlatform() const
{
return mPlatform;
}
2025-08-17 13:14:17 -04:00
void XCardMemory::ParseData(QDataStream *aStream)
{
*aStream >> mPlatform;
}
void XCardMemory::Clear()
{
mPlatform = 0;
}