Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/npc.h @ 4977

Last change on this file since 4977 was 4977, checked in by bensch, 19 years ago

orxonox/trunk: removed the WorldInterface, as its job is already been taken by state.h
also removed some totally obsolete but very cool functions of NPC

File size: 271 bytes
Line 
1
2#ifndef _NPC_H
3#define _NPC_H
4
5#include "world_entity.h"
6
7class AI;
8
9class NPC : public WorldEntity {
10
11 public:
12  NPC ();
13  ~NPC ();
14
15
16  void addAI(AI* ai);
17
18  int hit();
19  void die();
20
21 private:
22  /* position of the non player space craft */
23;
24
25};
26
27#endif /* _NPC_H */
Note: See TracBrowser for help on using the repository browser.