mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-29 19:21:15 +00:00
16 lines
226 B
C++
16 lines
226 B
C++
#ifndef MXCOLOR_H
|
|
#define MXCOLOR_H
|
|
#include "legostream.h"
|
|
|
|
class MxColor {
|
|
public:
|
|
MxColor();
|
|
MxResult Read(LegoStream* p_stream);
|
|
MxResult Write(LegoStream* p_stream);
|
|
|
|
private:
|
|
MxU8 m_color[3];
|
|
};
|
|
|
|
#endif // MXCOLOR_H
|