1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-12-22 03:30:02 +00:00
r65emu/utftdisplay.h
2014-11-17 15:08:43 +00:00

16 lines
255 B
C++

#ifndef __UTFT_DISPLAY_H__
#define __UTFT_DISPLAY_H__
class UTFTDisplay {
public:
void begin(unsigned bg, unsigned fg);
void clear();
void error(char *);
void status(const char *);
protected:
unsigned _bg, _fg, _cx, _cy, _dx, _dy, _oxs;
};
#endif