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

View File

@ -0,0 +1,22 @@
#ifndef XGFXLIGHTGRIDCOLORS_H
#define XGFXLIGHTGRIDCOLORS_H
#include "xasset.h"
class XGfxLightGridColors : public XAsset
{
public:
XGfxLightGridColors();
virtual ~XGfxLightGridColors();
// Override Clear and ParseData from XAsset
virtual void Clear() override;
virtual void ParseData(QDataStream *aStream) override;
quint8 rgb[56][3];
};
#endif // XGFXLIGHTGRIDCOLORS_H