Add xmaterialargumentcodeconst structures
This commit is contained in:
parent
d8b27a31d2
commit
02d96741e8
20
libs/xassets/xmaterialargumentcodeconst.cpp
Normal file
20
libs/xassets/xmaterialargumentcodeconst.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "xmaterialargumentcodeconst.h"
|
||||
|
||||
XMaterialArgumentCodeConst::XMaterialArgumentCodeConst()
|
||||
: XAsset()
|
||||
, mIndex(0)
|
||||
, mFirstRow(0)
|
||||
, mRowCount(0)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XMaterialArgumentCodeConst::Clear()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void XMaterialArgumentCodeConst::ParseData(QDataStream *aStream)
|
||||
{
|
||||
|
||||
}
|
||||
20
libs/xassets/xmaterialargumentcodeconst.h
Normal file
20
libs/xassets/xmaterialargumentcodeconst.h
Normal file
@ -0,0 +1,20 @@
|
||||
#ifndef XMATERIALARGUMENTCODECONST_H
|
||||
#define XMATERIALARGUMENTCODECONST_H
|
||||
|
||||
#include "xasset.h"
|
||||
|
||||
class XMaterialArgumentCodeConst : public XAsset
|
||||
{
|
||||
public:
|
||||
explicit XMaterialArgumentCodeConst();
|
||||
|
||||
virtual void Clear() override;
|
||||
virtual void ParseData(QDataStream *aStream) override;
|
||||
|
||||
private:
|
||||
int mIndex;
|
||||
int mFirstRow;
|
||||
int mRowCount;
|
||||
};
|
||||
|
||||
#endif // XMATERIALARGUMENTCODECONST_H
|
||||
Loading…
x
Reference in New Issue
Block a user