diff options
author | Mattes D <github@xoft.cz> | 2015-07-31 16:49:10 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-07-31 16:49:10 +0200 |
commit | 6e4122e551eeb41d3e950b363dd837d5586fe560 (patch) | |
tree | b5ee221d8a8e63c7d3b7868da1db19bf717a6ffd /src/BlockTracer.h | |
parent | Merge pull request #2400 from cuberite/OffloadBadChunks (diff) | |
download | cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.gz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.bz2 cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.lz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.xz cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.tar.zst cuberite-6e4122e551eeb41d3e950b363dd837d5586fe560.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockTracer.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/BlockTracer.h b/src/BlockTracer.h index c569b4ec6..ebc0668ee 100644 --- a/src/BlockTracer.h +++ b/src/BlockTracer.h @@ -88,7 +88,7 @@ public: } ; - /// Creates the BlockTracer parent with the specified callbacks + /** Creates the BlockTracer parent with the specified callbacks */ cBlockTracer(cWorld & a_World, cCallbacks & a_Callbacks) : m_World(&a_World), m_Callbacks(&a_Callbacks) @@ -96,7 +96,7 @@ public: } - /// Sets new world, returns the old one. Note that both need to be valid + /** Sets new world, returns the old one. Note that both need to be valid */ cWorld & SetWorld(cWorld & a_World) { cWorld & Old = *m_World; @@ -105,7 +105,7 @@ public: } - /// Sets new callbacks, returns the old ones. Note that both need to be valid + /** Sets new callbacks, returns the old ones. Note that both need to be valid */ cCallbacks & SetCallbacks(cCallbacks & a_NewCallbacks) { cCallbacks & Old = *m_Callbacks; @@ -114,10 +114,10 @@ public: } protected: - /// The world upon which to operate + /** The world upon which to operate */ cWorld * m_World; - /// The callback to use for reporting + /** The callback to use for reporting */ cCallbacks * m_Callbacks; } ; |