rnd-20001203-4-src
[rocksndiamonds.git] / src / libgame / libgame.c
index 8c000c209f141379d94fdf59face602de6588b84..00d7c13e436da73b53c1379a335f5ba789a6222a 100644 (file)
 ***********************************************************/
 
 #include "libgame.h"
+
+
+/* ========================================================================= */
+/* exported variables                                                        */
+/* ========================================================================= */
+
+struct ProgramInfo     program;
+struct OptionInfo      options;
+struct VideoSystemInfo video;
+struct AudioSystemInfo audio;
+struct GfxInfo         gfx;
+
+struct LevelDirInfo    *leveldir_first = NULL;
+struct LevelDirInfo    *leveldir_current = NULL;
+
+Display        *display = NULL;
+Visual        *visual = NULL;
+int            screen = 0;
+Colormap       cmap = None;
+
+DrawWindow     window = NULL;
+DrawBuffer     backbuffer = NULL;
+DrawBuffer     drawto = NULL;
+
+int            button_status = MB_NOT_PRESSED;
+boolean                motion_status = FALSE;
+
+int            redraw_mask = REDRAW_NONE;
+int            redraw_tiles = 0;
+
+int            FrameCounter = 0;