Changeset 8994 in orxonox.OLD for trunk/src/util
- Timestamp:
- Jul 2, 2006, 5:38:44 AM (18 years ago)
- Location:
- trunk/src/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/hud.cc
r8990 r8994 26 26 #include "glgui_inputline.h" 27 27 #include "specials/glgui_notifier.h" 28 #include "elements/glgui_radar.h" 28 29 29 30 /** … … 49 50 notifier->setAbsCoor2D(100,100); 50 51 52 this->radar = new OrxGui::GLGuiRadar(); 53 51 54 this->subscribeEvent(ES_ALL, EV_VIDEO_RESIZE); 52 55 … … 62 65 delete this->inputLine; 63 66 delete this->notifier; 67 68 delete this->radar; 64 69 // delete what has to be deleted here 65 70 } -
trunk/src/util/hud.h
r8990 r8994 9 9 #include "element_2d.h" 10 10 #include "event_listener.h" 11 12 11 13 // FORWARD DECLARATION 12 class TiXmlElement;13 14 14 class WeaponManager; 15 15 namespace OrxGui { … … 17 17 class GLGuiNotifier; 18 18 class GLGuiInputLine; 19 19 class GLGuiRadar; 20 20 } 21 21 … … 62 62 OrxGui::GLGuiNotifier* notifier; 63 63 OrxGui::GLGuiInputLine* inputLine; 64 OrxGui::GLGuiRadar* radar; 64 65 65 66 WeaponManager* weaponManager;
Note: See TracChangeset
for help on using the changeset viewer.