Files
BlitzNext/Runtime/blitz3d/mirror.hpp
T
Michael Fabian 'Xaymar' Dirks 2196cb8419 runtime: Formatting
2019-01-18 17:04:17 +01:00

24 lines
272 B
C++

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