Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/parenting/src/null_parent.h @ 3309

Last change on this file since 3309 was 3308, checked in by patrick, 19 years ago

orxonox/branches/parenting: fixed a bug that prevented the program from changing to a new level (SEGFAULT), NOT yet following track

File size: 391 bytes
RevLine 
[3276]1/*!
2    \file proto_class.h
3    \brief Definition of the proto class template, used quickly start work
4*/
5
6
7#ifndef _NULL_PARENT_H
8#define _NULL_PARENT_H
9
10#include "stdincl.h"
[3308]11#include "p_node.h"
[3276]12
13
[3308]14class NullParent : public PNode {
[3276]15
16 public:
17  NullParent ();
18  NullParent (Vector* absCoordinate);
19  ~NullParent ();
20
[3302]21  virtual void update (float timeStamp);
[3276]22
23};
24
25#endif /* _NULL_PARENT_H */
Note: See TracBrowser for help on using the repository browser.