15 lines
184 B
C++
15 lines
184 B
C++
#pragma once
|
|
#include "object.hpp"
|
|
|
|
class Pivot : public Object {
|
|
public:
|
|
Pivot();
|
|
Pivot(const Object& t);
|
|
|
|
//Entity interface
|
|
Entity* clone()
|
|
{
|
|
return new Pivot(*this);
|
|
}
|
|
};
|