00001 #ifndef LEVELWINDOW_H 00002 #define LEVELWINDOW_H 00003 00004 #include "levelwindowgui.inc" 00005 #include "mwindow.inc" 00006 #include "thread.h" 00007 00008 00009 class LevelWindow : public Thread 00010 { 00011 public: 00012 LevelWindow(MWindow *mwindow); 00013 ~LevelWindow(); 00014 00015 int create_objects(); 00016 void run(); 00017 00018 LevelWindowGUI *gui; 00019 MWindow *mwindow; 00020 }; 00021 00022 00023 00024 00025 00026 #endif
1.4.4