Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/world_entities/npcs/npc_test.h @ 10030

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

orxonox/trunk: merged the new_class_id branche back to the trunk.
merged with command:
svn merge https://svn.orxonox.net/orxonox/branches/new_class_id trunk -r9683:HEAD
no conflicts… puh..

File size: 467 bytes
RevLine 
[1853]1
[5266]2#ifndef _NPC22_H
3#define _NPC2_H
[1853]4
[6004]5#include "npc.h"
[1853]6
[2036]7class AI;
[5266]8class Shader;
[1904]9
[6004]10class NPC2 : public NPC {
[9869]11  ObjectListDeclaration(NPC2);
[1853]12
13 public:
[9235]14  NPC2 (const TiXmlElement* root);
[6981]15  virtual ~NPC2 ();
[1853]16
[9235]17  virtual void loadParams(const TiXmlElement* root);
[1899]18
[4977]19  void addAI(AI* ai);
[1899]20
[9235]21  virtual void destroy(WorldEntity* killer);
22
[5029]23  virtual void tick(float dt);
[5500]24  virtual void draw() const;
[1858]25
26 private:
[5059]27   Vector   randomRotAxis;
[5266]28   Shader*  shader;
[1853]29};
30
[5266]31#endif /* _NPC2_H */
Note: See TracBrowser for help on using the repository browser.