XPlor/libs/xassets/xgfxlightgridcolors.h

23 lines
425 B
C
Raw Normal View History

#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;
2025-09-10 21:58:26 -04:00
virtual void ParseData(XDataStream *aStream) override;
quint8 rgb[56][3];
};
#endif // XGFXLIGHTGRIDCOLORS_H