Files
BlitzNext/blitz3d/mirror.h
T
blitz-research 08a613ed0e Initial commit.
2014-01-31 08:23:00 +13:00

18 lines
264 B
C++

#ifndef MIRROR_H
#define MIRROR_H
#include "object.h"
class Mirror : public Object{
public:
Mirror();
Mirror( const Mirror &t );
~Mirror();
//Entity interface
Entity *clone(){ return d_new Mirror( *this ); }
Mirror *getMirror(){ return this; }
};
#endif