1
0
cuberite-2a/source/Entities/Boat.h
Tiger Wang c789a8ddf5 Initial boat support
+ Boats are saved
+ Boats have physics
+ Boats spawn
2013-09-08 00:14:57 +01:00

34 lines
557 B
C++

// Boat.h
// Declares the cBoat class representing a minecart in the world
#pragma once
#include "Entity.h"
#include "../Item.h"
class cBoat :
public cEntity
{
typedef cEntity super;
public:
CLASS_PROTODEF(cBoat);
// cEntity overrides:
virtual void SpawnOn(cClientHandle & a_ClientHandle) override;
virtual void OnRightClicked(cPlayer & a_Player) override;
virtual void DoTakeDamage(TakeDamageInfo & TDI) override;
virtual void HandlePhysics(float a_Dt, cChunk & a_Chunk) override;
cBoat(double a_X, double a_Y, double a_Z);
} ;