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

19 lines
212 B
C++

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