26 lines
345 B
C++
26 lines
345 B
C++
#include "xfile.h"
|
|
|
|
#include <QDebug>
|
|
|
|
XFile::XFile()
|
|
: XAsset()
|
|
{
|
|
SetName("File");
|
|
}
|
|
|
|
void XFile::ParseData(XDataStream *aStream)
|
|
{
|
|
quint32 contentLength;
|
|
*aStream
|
|
>> contentLength;
|
|
contentLength += 44;
|
|
qDebug() << "Content size: " << contentLength;
|
|
|
|
aStream->skipRawData(8 * 4);
|
|
}
|
|
|
|
void XFile::Clear()
|
|
{
|
|
|
|
}
|