summaryrefslogtreecommitdiffstats
path: root/source/Entities/Boat.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Entities/Boat.h')
-rw-r--r--source/Entities/Boat.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/source/Entities/Boat.h b/source/Entities/Boat.h
deleted file mode 100644
index 8c51ab86c..000000000
--- a/source/Entities/Boat.h
+++ /dev/null
@@ -1,37 +0,0 @@
-
-// Boat.h
-
-// Declares the cBoat class representing a boat in the world
-
-
-
-
-
-#pragma once
-
-#include "Entity.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);
-} ;
-
-
-
-