]> git.sesse.net Git - ccbs/blobdiff - bigscreen/screen.h
Replace 800x600 width a resolution from a .h file. Lots of positions are still hardco...
[ccbs] / bigscreen / screen.h
index 9b5d892c5606e817d4cac06a4f6cd934a8aa2f08..e519279829c694e012fc478b31f7ce811eefc7e4 100644 (file)
@@ -1,15 +1,18 @@
 #ifndef _SCREEN_H
 #define _SCREEN_H 1
 
 #ifndef _SCREEN_H
 #define _SCREEN_H 1
 
+#include "resolution.h"
+
 // arf, Screen conflicts with X11
 class GenericScreen {
 protected:
        GenericScreen();
 // arf, Screen conflicts with X11
 class GenericScreen {
 protected:
        GenericScreen();
-       virtual ~GenericScreen();
 
 public:
 
 public:
+       virtual ~GenericScreen();
        virtual bool check_invalidated() = 0;
        virtual void draw(unsigned char *buf) = 0;
        virtual bool check_invalidated() = 0;
        virtual void draw(unsigned char *buf) = 0;
+       virtual int get_priority();
 };
 
 #endif /* !defined(_SCREEN_H) */
 };
 
 #endif /* !defined(_SCREEN_H) */