src/Graphics/Display.hh
branchnew_graphics
changeset 417 c503e0c6a740
parent 414 cede5463b845
child 423 947ab54de4b7
--- a/src/Graphics/Display.hh	Thu Jan 22 00:28:26 2009 +0200
+++ b/src/Graphics/Display.hh	Thu Jan 22 01:53:05 2009 +0200
@@ -7,23 +7,13 @@
 namespace graphics
 {
 
-struct DisplayConfig {
-    /** Display resolution */
-    PixelDimensions resolution;
-
-    /** Fullscreen mode? */
-    bool fullscreen;
-
-    /** Defaults */
-    DisplayConfig (void) : resolution(GRAPHICS_RESOLUTION_WIDTH, GRAPHICS_RESOLUTION_HEIGHT), fullscreen(GRAPHICS_FULLSCREEN) { }
-};
-
 class Display;
 
 }
 
 #include "View.hh"
 #include "../Timer.hh"
+#include "../Configuration.hh"
 
 #include <ClanLib/display.h>