Last change
on this file since 3347 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:
511 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 _PROTO_CLASS_H |
---|
8 | #define _PROTO_CLASS_H |
---|
9 | |
---|
10 | #include "stdincl.h" |
---|
11 | |
---|
12 | /*class Test;*/ /* forward definition of class Test (without including it here!)*/ |
---|
13 | |
---|
14 | class ProtoClass : public BaseObject { |
---|
15 | |
---|
16 | public: |
---|
17 | ProtoClass (); |
---|
18 | ~ProtoClass (); |
---|
19 | |
---|
20 | bool doNonSense (int nothing); |
---|
21 | |
---|
22 | private: |
---|
23 | int nonSense; //! doxygen tag here like this - delete this variable if you use this |
---|
24 | |
---|
25 | }; |
---|
26 | |
---|
27 | #endif /* _PROTO_CLASS_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.