1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-12-21 12:29:51 +00:00
r65emu/utftdisplay.h

23 lines
421 B
C
Raw Normal View History

#ifndef _UTFT_DISPLAY_H
#define _UTFT_DISPLAY_H
class Stream;
2014-10-21 18:41:44 +00:00
class UTFTDisplay: public Memory::Device {
public:
void begin(unsigned bg, unsigned fg);
void clear();
void error(char *);
void status(const char *);
virtual void checkpoint(Stream &s) = 0;
virtual void restore(Stream &s) = 0;
protected:
UTFTDisplay(unsigned size): Memory::Device(size) {}
unsigned _bg, _fg, _cx, _cy, _dx, _dy, _oxs;
};
#endif