Last change
on this file since 3283 was
3276,
checked in by patrick, 20 years ago
|
orxonox/branche/parenting: added nullparent as the center of all parents.
|
File size:
390 bytes
|
Rev | Line | |
---|
[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" |
---|
| 11 | #include "p_node.h" |
---|
| 12 | |
---|
| 13 | |
---|
| 14 | class NullParent : public PNode { |
---|
| 15 | |
---|
| 16 | public: |
---|
| 17 | NullParent (); |
---|
| 18 | NullParent (Vector* absCoordinate); |
---|
| 19 | ~NullParent (); |
---|
| 20 | |
---|
| 21 | virtual void update (long timeStamp); |
---|
| 22 | |
---|
| 23 | }; |
---|
| 24 | |
---|
| 25 | #endif /* _NULL_PARENT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.