Files
BlitzNext/blitz3d/pivot.h
T
blitz-research 08a613ed0e Initial commit.
2014-01-31 08:23:00 +13:00

16 lines
209 B
C++

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