Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/util/hud.cc @ 6438

Last change on this file since 6438 was 6438, checked in by bensch, 18 years ago

trunk: widget war

File size: 1.1 KB
RevLine 
[4744]1/*
[1853]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
[1855]10
11   ### File Specific:
[6437]12   main-programmer: Benjamin Grauer
[1855]13   co-programmer: ...
[1853]14*/
15
[3955]16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
[1853]17
[6437]18#include "hud.h"
[1853]19
[1856]20using namespace std;
[1853]21
[1856]22
[3245]23/**
[4838]24 * standard constructor
25 * @todo this constructor is not jet implemented - do it
[3245]26*/
[6437]27Hud::Hud ()
[3365]28{
[6438]29  this->setClassID(CL_HUD, "Hud");
[4320]30
[3365]31}
[1853]32
33
[3245]34/**
[4838]35 * standard deconstructor
[3245]36*/
[6437]37Hud::~Hud ()
[3543]38{
39  // delete what has to be deleted here
40}
[6438]41
42
43void Hud::loadParams(const TiXmlElement* root)
44{
45
46}
47
48void Hud::setBackGround()
49{
50
51}
52
53void Hud::setEnergyWidget(GLGuiWidget* widget)
54{
55
56}
57
58void Hud::setShiledWidget(GLGuiWidget* widget)
59{
60
61}
62
63void Hud::setArmorWidget(GLGuiWidget* widget)
64{
65
66}
67
68void Hud::addWeaponWidget(GLGuiWidget* widget)
69{
70
71}
72
73void Hud::removeWeaponWidget(GLGuiWidget* widget)
74{
75
76}
77
78void setResolution(unsigned int resX, unsigned int resY);
Note: See TracBrowser for help on using the repository browser.