Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

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

File size: 518 bytes
Line 
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
8#ifndef _BaseObject_H__
9#define _BaseObject_H__
10
11#include "../core/CoreIncludes.h"
12
13namespace orxonox
14{
15    //! The BaseObject is the parent of all classes representing an instance in the game.
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.