Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/src/orxonox/objects/BaseObject.h @ 571

Last change on this file since 571 was 452, checked in by landauf, 17 years ago

More documentation and comments (it's so much fun!)

File size: 518 bytes
RevLine 
[452]1/*!
2    @file BaseObject.h
3    @brief Definition of the BaseObject class.
4
5    The BaseObject is the parent of all classes representing an instance in the game.
6*/
7
[256]8#ifndef _BaseObject_H__
9#define _BaseObject_H__
10
[443]11#include "../core/CoreIncludes.h"
[256]12
13namespace orxonox
14{
[452]15    //! The BaseObject is the parent of all classes representing an instance in the game.
[256]16    class BaseObject : virtual public OrxonoxClass
17    {
18        public:
19            BaseObject();
20            virtual ~BaseObject();
21    };
22}
23
24#endif
Note: See TracBrowser for help on using the repository browser.