Files
BlitzNext/Runtime/blitz3d/pivot.hpp
T
Michael Fabian 'Xaymar' Dirks 24788185aa runtime: CMake-ify
2019-01-18 15:55:06 +01:00

16 lines
209 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