Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/parenting/src/proto_class.h @ 3335

Last change on this file since 3335 was 3302, checked in by patrick, 19 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
RevLine 
[3245]1/*!
[3246]2    \file proto_class.h
3    \brief Definition of the proto class template, used quickly start work
[3245]4*/
[1853]5
[3245]6
[3224]7#ifndef _PROTO_CLASS_H
8#define _PROTO_CLASS_H
[1853]9
[3245]10#include "stdincl.h"
[1853]11
[3245]12/*class Test;*/ /* forward definition of class Test (without including it here!)*/
[2036]13
[3302]14class ProtoClass : public BaseObject {
[1853]15
[1904]16 public:
[1853]17  ProtoClass ();
18  ~ProtoClass ();
19
[3245]20  bool doNonSense (int nothing);
21
22 private:
23  int nonSense;  //! doxygen tag here like this - delete this variable if you use this
24
[1853]25};
26
[3224]27#endif /* _PROTO_CLASS_H */
Note: See TracBrowser for help on using the repository browser.