Last change
on this file since 3800 was
3644,
checked in by patrick, 20 years ago
|
orxonox/trunk: pnode speed function implemented
|
File size:
458 bytes
|
Line | |
---|
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 | |
---|
11 | #include "p_node.h" |
---|
12 | |
---|
13 | |
---|
14 | class NullParent : public PNode { |
---|
15 | |
---|
16 | public: |
---|
17 | static NullParent* getInstance (); |
---|
18 | virtual ~NullParent (); |
---|
19 | |
---|
20 | |
---|
21 | virtual void update (float dt); |
---|
22 | |
---|
23 | private: |
---|
24 | NullParent (); |
---|
25 | NullParent (Vector* absCoordinate); |
---|
26 | static NullParent* singletonRef; |
---|
27 | |
---|
28 | }; |
---|
29 | |
---|
30 | #endif /* _NULL_PARENT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.