summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-04 14:55:41 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-04 14:55:41 +0200
commit9c4f8f033c1debb1583ec45533e4c0487a579ac0 (patch)
tree43b70bd24426cf57841eaad814f769ff5153bd0d
parentDistortedHeightmap: Added clay / sand / dirt selection on ocean floor (diff)
downloadcuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar.gz
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar.bz2
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar.lz
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar.xz
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.tar.zst
cuberite-9c4f8f033c1debb1583ec45533e4c0487a579ac0.zip
-rw-r--r--source/Entity.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/Entity.h b/source/Entity.h
index 713cdf70d..b1bcbfd7f 100644
--- a/source/Entity.h
+++ b/source/Entity.h
@@ -173,7 +173,7 @@ public:
*/
virtual void SpawnOn(cClientHandle & a_Client) {ASSERT(!"SpawnOn() unimplemented!"); }
- //Updates clients of changes in the entity.
+ /// Updates clients of changes in the entity.
virtual void BroadcastMovementUpdate(const cClientHandle * a_Exclude = NULL);
/// Attaches to the specified entity; detaches from any previous one first
@@ -182,13 +182,13 @@ public:
/// Detaches from the currently attached entity, if any
void Detach(void);
- //Makes sure head yaw is not over the specified range.
+ /// Makes sure head yaw is not over the specified range.
void WrapHeadYaw();
- //Makes sure rotation is not over the specified range.
+ /// Makes sure rotation is not over the specified range.
void WrapRotation();
- //Makes speed is not over 20. Max speed is 20 blocks / second
+ /// Makes speed is not over 20. Max speed is 20 blocks / second
void WrapSpeed();
// tolua_begin