Changeset 7810 in orxonox.OLD for trunk/src/util
- Timestamp:
- May 24, 2006, 3:57:04 PM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/multiplayer_team_deathmatch.cc
r7221 r7810 20 20 #include "util/loading/factory.h" 21 21 22 #include "render2D/ billboard.h"22 #include "render2D/image_plane.h" 23 23 #include "state.h" 24 24 #include "class_list.h" … … 53 53 this->timeout = 0.0f; 54 54 55 this->deathScreen = new Billboard();55 this->deathScreen = new ImagePlane(); 56 56 this->deathScreen->setSize(State::getResX()/4.0, State::getResY()/4.0); 57 57 this->deathScreen->setAbsCoor2D(State::getResX()/2.0f, State::getResY()/2.0f); -
trunk/src/util/multiplayer_team_deathmatch.h
r7221 r7810 16 16 class ObjectManager; 17 17 class Player; 18 class Billboard;18 class ImagePlane; 19 19 20 20 … … 52 52 int teamBKills; //!< kills of team B 53 53 54 Billboard* deathScreen; //!< the death screen54 ImagePlane* deathScreen; //!< the death screen 55 55 }; 56 56
Note: See TracChangeset
for help on using the changeset viewer.