Last change
on this file since 3306 was
3302,
checked in by patrick, 20 years ago
|
orxonox/branches/parenting: implemented parenting and added to framework. sill got some problems with how to pass events through the new entity list (now part of the parenting-framework). changed to a more accurate way of coordinat-ing, the openGL coord-orientation. therefore the world is realy strange because it flies into the wrong direction.
|
File size:
403 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 | #include "stdincl.h" |
---|
11 | #include "world_entity.h" |
---|
12 | |
---|
13 | |
---|
14 | class NullParent : public WorldEntity { |
---|
15 | |
---|
16 | public: |
---|
17 | NullParent (); |
---|
18 | NullParent (Vector* absCoordinate); |
---|
19 | ~NullParent (); |
---|
20 | |
---|
21 | virtual void update (float timeStamp); |
---|
22 | |
---|
23 | }; |
---|
24 | |
---|
25 | #endif /* _NULL_PARENT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.