Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8994 in orxonox.OLD for trunk/src/util


Ignore:
Timestamp:
Jul 2, 2006, 5:38:44 AM (18 years ago)
Author:
bensch
Message:

compiling radar

Location:
trunk/src/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/hud.cc

    r8990 r8994  
    2626#include "glgui_inputline.h"
    2727#include "specials/glgui_notifier.h"
     28#include "elements/glgui_radar.h"
    2829
    2930/**
     
    4950  notifier->setAbsCoor2D(100,100);
    5051
     52  this->radar = new OrxGui::GLGuiRadar();
     53
    5154  this->subscribeEvent(ES_ALL, EV_VIDEO_RESIZE);
    5255
     
    6265  delete this->inputLine;
    6366  delete this->notifier;
     67
     68  delete this->radar;
    6469  // delete what has to be deleted here
    6570}
  • trunk/src/util/hud.h

    r8990 r8994  
    99#include "element_2d.h"
    1010#include "event_listener.h"
     11
     12
    1113// FORWARD DECLARATION
    12 class TiXmlElement;
    13 
    1414class WeaponManager;
    1515namespace OrxGui {
     
    1717  class GLGuiNotifier;
    1818  class GLGuiInputLine;
    19 
     19  class GLGuiRadar;
    2020}
    2121
     
    6262  OrxGui::GLGuiNotifier*   notifier;
    6363  OrxGui::GLGuiInputLine*  inputLine;
     64  OrxGui::GLGuiRadar*      radar;
    6465
    6566  WeaponManager*           weaponManager;
Note: See TracChangeset for help on using the changeset viewer.