Files
BlitzNext/Runtime/blitz3d/pivot.hpp
T

16 lines
209 B
C++
Raw Normal View History

2014-01-31 08:23:00 +13:00
#ifndef PIVOT_H
#define PIVOT_H
2019-01-18 15:55:06 +01:00
#include "object.hpp"
2014-01-31 08:23:00 +13:00
class Pivot : public Object{
public:
Pivot();
Pivot( const Object &t );
//Entity interface
2016-10-03 17:11:15 +02:00
Entity *clone(){ return new Pivot( *this ); }
2014-01-31 08:23:00 +13:00
};
#endif