summaryrefslogtreecommitdiffstats
path: root/source/Entities/ExpOrb.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2013-11-26 10:48:46 +0100
committerMattes D <github@xoft.cz>2013-11-26 10:48:46 +0100
commit6041fa1e62cc490c4595e6cd267eb96ac5b6e041 (patch)
tree00e3c895d8e0143275ba6d1a9a1ff0361714b53e /source/Entities/ExpOrb.h
parentFixed cFile compilation on Linux. (diff)
parentAdded ExpOrb.cpp and ExpOrb.h to MCServer.vcproj. (diff)
downloadcuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar.gz
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar.bz2
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar.lz
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar.xz
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.tar.zst
cuberite-6041fa1e62cc490c4595e6cd267eb96ac5b6e041.zip
Diffstat (limited to 'source/Entities/ExpOrb.h')
-rw-r--r--source/Entities/ExpOrb.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/source/Entities/ExpOrb.h b/source/Entities/ExpOrb.h
new file mode 100644
index 000000000..a062eedd3
--- /dev/null
+++ b/source/Entities/ExpOrb.h
@@ -0,0 +1,29 @@
+
+#pragma once
+
+#include "Entity.h"
+
+
+
+
+
+class cExpOrb :
+ public cEntity
+{
+ typedef cExpOrb super;
+
+public:
+
+ cExpOrb(double a_X, double a_Y, double a_Z, int a_Reward);
+ cExpOrb(const Vector3d & a_Pos, int a_Reward);
+
+ // Override functions
+ virtual void Tick(float a_Dt, cChunk & a_Chunk) override;
+ virtual void SpawnOn(cClientHandle & a_Client) override;
+
+ // cExpOrb functions
+ int GetReward(void) const { return m_Reward; }
+
+protected:
+ int m_Reward;
+} ; \ No newline at end of file