XPlor/libs/xassets/xgputexturefetchconstant.cpp
2025-08-17 13:14:17 -04:00

24 lines
266 B
C++

#include "xcardmemory.h"
XCardMemory::XCardMemory()
: XAsset()
, mPlatform(0)
{
}
XCardMemory::~XCardMemory()
{
}
void XCardMemory::ParseData(QDataStream *aStream)
{
*aStream >> mPlatform;
}
void XCardMemory::Clear()
{
mPlatform = 0;
}