projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Replace 800x600 width a resolution from a .h file. Lots of positions are still hardco...
[ccbs]
/
bigscreen
/
screen.h
1
#ifndef _SCREEN_H
2
#define _SCREEN_H 1
3
4
#include "resolution.h"
5
6
// arf, Screen conflicts with X11
7
class GenericScreen {
8
protected:
9
GenericScreen();
10
11
public:
12
virtual ~GenericScreen();
13
virtual bool check_invalidated() = 0;
14
virtual void draw(unsigned char *buf) = 0;
15
virtual int get_priority();
16
};
17
18
#endif /* !defined(_SCREEN_H) */