Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/subprojects/collision_detection/collision_test_entity.h @ 7711

Last change on this file since 7711 was 7711, checked in by patrick, 18 years ago

trunk: merged the cd branche back to trunk

File size: 760 bytes
RevLine 
[4490]1/*!
[5486]2  \file collision_test_entity.h
3  \brief This file handles the collision_test_entity of the game
[4490]4*/
5
[5486]6#ifndef _COLLISION_TEST_ENTITY_H
7#define _COLLISION_TEST_ENTITY_H
[1883]8
[2036]9#include "world_entity.h"
[1883]10
[5486]11//! collision_test_entity of orxonox
[4490]12/**
13   everything that does not interact with the player comes here
[5486]14   Collision_Test_Entity is a container for all the worldEntities that are non-interactive
[4490]15*/
[5486]16class CollisionTestEntity : public WorldEntity
[2816]17{
18  friend class World;
19
[1883]20 public:
[7711]21  CollisionTestEntity (const char* modelName);
[5486]22  CollisionTestEntity (const TiXmlElement* root);
23  virtual ~CollisionTestEntity ();
[1883]24
[5361]25  void init();
[6512]26  virtual void loadParams(const TiXmlElement* root);
[5047]27
[5361]28
29
[2816]30  virtual void tick (float time);
[5047]31
[1883]32};
33
[5486]34#endif /* _COLLISION_TEST_ENTITY_H */
Note: See TracBrowser for help on using the repository browser.