Sdk/LuaAPI: Bind VelocityComponent

Former-commit-id: 7e51aa57854b58cdf8b243f1e02e7bb90a943709
This commit is contained in:
Lynix
2016-04-01 18:57:51 +02:00
parent 2736081578
commit fdccc9e510
4 changed files with 42 additions and 1 deletions

View File

@@ -13,8 +13,11 @@
namespace Ndk
{
class Entity;
class VelocityComponent;
class NDK_API VelocityComponent : public Component<VelocityComponent>
using VelocityComponentHandle = Nz::ObjectHandle<VelocityComponent>;
class NDK_API VelocityComponent : public Component<VelocityComponent>, public Nz::HandledObject<VelocityComponent>
{
public:
VelocityComponent(const Nz::Vector3f& velocity = Nz::Vector3f::Zero());