Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/graphics/render2D/element_2D.h @ 4838

Last change on this file since 4838 was 4838, checked in by bensch, 19 years ago

orxonox/trunk: Element2D added → will be moved to lib/graphics afterwards
ProtoClass update
EventListeners do not have to be unsubscribed externally, but still one listener won't unsubscribe

File size: 359 bytes
Line 
1/*!
2 * @file element_2D.h
3 * @brief Definition of the 2D elements rendered on top through the GraphicsEngine
4*/
5
6#ifndef _ELEMENT_2D_H
7#define _ELEMENT_2D_H
8
9#include "base_object.h"
10
11// FORWARD DECLARATION
12
13//! A class for ...
14class Element2D : public BaseObject {
15
16 public:
17  Element2D();
18  virtual ~Element2D();
19
20
21 private:
22
23};
24
25#endif /* _ELEMENT_2D_H */
Note: See TracBrowser for help on using the repository browser.