Files
BlitzNext/blitz3d/pivot.h
T
Michael Fabian Dirks 581c640149 Uh, Updates?
2016-10-03 17:11:15 +02:00

16 lines
207 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 new Pivot( *this ); }
};
#endif