Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/camera/src/world_entities/cameraman.h @ 10192

Last change on this file since 10192 was 10192, checked in by gfilip, 17 years ago

cameraman created

File size: 290 bytes
Line 
1#ifndef _CAMERAMAN_H
2#define _CAMERAMAN_H
3
4#include "p_node.h"
5
6class cameraman {
7
8  private:
9    PNode* currentCam;
10    int camNo;
11    int camAmount;
12    Pnode* cameras[10];
13
14
15  public:
16    cameraman();
17    void setCam(Pnode* cam);
18    void createCam();
19
20
21
22
23
24
25};
26
27#endif /* _CAMERAMAN_H */
Note: See TracBrowser for help on using the repository browser.