Files
Michael Fabian 'Xaymar' Dirks 3afa84df85 runtime/blitz3d: Fixup C++ification
2019-01-18 21:26:42 +01:00

20 lines
242 B
C++

#pragma once
#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;
}
};