diff options
author | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-08 01:14:57 +0200 |
---|---|---|
committer | Tiger Wang <ziwei.tiger@hotmail.co.uk> | 2013-09-08 01:14:57 +0200 |
commit | c789a8ddf5840cf7861c73536279da8bbd9281c3 (patch) | |
tree | b310df7724901b570d442039f196b073a1397fd3 /source/Entities/Boat.h | |
parent | Implemented SteerVehicle packet. (diff) | |
download | cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar.gz cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar.bz2 cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar.lz cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar.xz cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.tar.zst cuberite-c789a8ddf5840cf7861c73536279da8bbd9281c3.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Entities/Boat.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/source/Entities/Boat.h b/source/Entities/Boat.h new file mode 100644 index 000000000..439b73a09 --- /dev/null +++ b/source/Entities/Boat.h @@ -0,0 +1,34 @@ + +// 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); +} ;
\ No newline at end of file |