mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
37 lines
531 B
C++
37 lines
531 B
C++
class LayerWindow {
|
|
public:
|
|
bool one_enable;
|
|
bool one_invert;
|
|
bool two_enable;
|
|
bool two_invert;
|
|
|
|
unsigned mask;
|
|
|
|
bool main_enable;
|
|
bool sub_enable;
|
|
|
|
uint8 main[256];
|
|
uint8 sub[256];
|
|
|
|
void render(bool screen);
|
|
void serialize(serializer&);
|
|
};
|
|
|
|
class ColorWindow {
|
|
public:
|
|
bool one_enable;
|
|
bool one_invert;
|
|
bool two_enable;
|
|
bool two_invert;
|
|
|
|
unsigned mask;
|
|
|
|
unsigned main_mask;
|
|
unsigned sub_mask;
|
|
|
|
uint8 main[256];
|
|
uint8 sub[256];
|
|
|
|
void render(bool screen);
|
|
void serialize(serializer&);
|
|
};
|