Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/dave/core/npc.h @ 1885

Last change on this file since 1885 was 1858, checked in by patrick, 20 years ago

orxonox/trunk/core: world draw function

File size: 307 bytes
Line 
1
2#ifndef NPC_H
3#define NPC_H
4
5
6class NPC {
7
8 public:
9  NPC ();
10  ~NPC ();
11
12  void drawNPC(void);
13  void setPosition(int x, int y, int z);
14  void getPosition(int* x, int* y, int* z);
15
16 private:
17  /* position of the non player space craft */
18
19  int npcType;
20
21  int xCor;
22  int yCor;
23  int zCor;
24;
25
26};
27
28#endif
Note: See TracBrowser for help on using the repository browser.