comparison mde/SDL.d @ 27:0aa621b3e070

Some GUI work, plus a small fix in the paths module. Implemented GUI code to load windows from file with a basic widget and draw. Fixed a bug in mde.resource.paths.mdeDirectory.makeMTReader when called with readOrder == PRIORITY.HIGH_ONLY. committer: Diggory Hardy <diggory.hardy@gmail.com>
author Diggory Hardy <diggory.hardy@gmail.com>
date Fri, 04 Apr 2008 17:07:38 +0100
parents 611f7b9063c6
children f985c28c0ec9
comparison
equal deleted inserted replaced
26:611f7b9063c6 27:0aa621b3e070
28 28
29 import derelict.sdl.sdl; 29 import derelict.sdl.sdl;
30 import derelict.opengl.gl; 30 import derelict.opengl.gl;
31 import derelict.util.exception; 31 import derelict.util.exception;
32 32
33 Logger logger; 33 private Logger logger;
34 static this() { 34 static this() {
35 logger = Log.getLogger ("mde.SDL"); 35 logger = Log.getLogger ("mde.SDL");
36 36
37 init.addFunc (&initSdlAndGl); 37 init.addFunc (&initSdlAndGl);
38 } 38 }