feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit afb0430f30 - Show all commits

33
libs/xassets/xrectdef.cpp Normal file
View File

@ -0,0 +1,33 @@
#include "xrectdef.h"
XRectDef::XRectDef()
: XAsset()
, mX(0)
, mY(0)
, mW(0)
, mH(0)
, mHorzAlign(0)
, mVertAlign(0)
{
}
XRectDef::~XRectDef()
{
}
void XRectDef::ParseData(QDataStream *aStream)
{
}
void XRectDef::Clear()
{
mX = 0;
mY = 0;
mW = 0;
mH = 0;
mHorzAlign = 0;
mVertAlign = 0;
}