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
Line 
1/*
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.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
17
18#include "hud.h"
19
20using namespace std;
21
22
23/**
24 * standard constructor
25 * @todo this constructor is not jet implemented - do it
26*/
27Hud::Hud ()
28{
29  this->setClassID(CL_HUD, "Hud");
30
31}
32
33
34/**
35 * standard deconstructor
36*/
37Hud::~Hud ()
38{
39  // delete what has to be deleted here
40}
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.