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 aa77115da8 - Show all commits

28
libs/xassets/xglyph.h Normal file
View File

@ -0,0 +1,28 @@
#ifndef XGLYPH_H
#define XGLYPH_H
#include "xasset.h"
class XGlyph : public XAsset
{
public:
explicit XGlyph();
~XGlyph();
void Clear() override;
void ParseData(QDataStream *aStream) override;
private:
quint16 mLetter;
char mX0;
char mY0;
quint8 mDx;
quint8 mPixelWidth;
quint8 mPixelHeight;
float mS0;
float mT0;
float mS1;
float mT1;
};
#endif // XGLYPH_H