2014-01-31 08:23:00 +13:00
|
|
|
|
|
|
|
|
#ifndef MIRROR_H
|
|
|
|
|
#define MIRROR_H
|
|
|
|
|
|
|
|
|
|
#include "object.h"
|
|
|
|
|
|
|
|
|
|
class Mirror : public Object{
|
|
|
|
|
public:
|
|
|
|
|
Mirror();
|
|
|
|
|
Mirror( const Mirror &t );
|
|
|
|
|
~Mirror();
|
|
|
|
|
|
|
|
|
|
//Entity interface
|
2016-10-03 17:11:15 +02:00
|
|
|
Entity *clone(){ return new Mirror( *this ); }
|
2014-01-31 08:23:00 +13:00
|
|
|
Mirror *getMirror(){ return this; }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|