diff options
author | LogicParrot <LogicParrot@users.noreply.github.com> | 2017-09-02 09:45:06 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2017-09-02 09:50:23 +0200 |
commit | 49c443896dcac8c4eaf08c4024e8bd2366ad899a (patch) | |
tree | b1ec46cab2b4e5731860c7136f1bbfca6fe9d458 /src/LineBlockTracer.h | |
parent | SetSwimState now takes into account head height (diff) | |
download | cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar.gz cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar.bz2 cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar.lz cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar.xz cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.tar.zst cuberite-49c443896dcac8c4eaf08c4024e8bd2366ad899a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/LineBlockTracer.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/LineBlockTracer.h b/src/LineBlockTracer.h index 2204e3671..2851cfbd7 100644 --- a/src/LineBlockTracer.h +++ b/src/LineBlockTracer.h @@ -18,12 +18,17 @@ // fwd: Chunk.h class cChunk; +// fwd: cChunkMap.h +typedef cItemCallback<cChunk> cChunkCallback; + + class cLineBlockTracer : - public cBlockTracer + public cBlockTracer, + public cChunkCallback { typedef cBlockTracer super; @@ -104,7 +109,8 @@ protected: /** Moves m_Current to the next block on the line; returns false if no move is possible (reached the end) */ bool MoveToNextBlock(void); - bool ChunkCallback(cChunk * a_Chunk); + // cChunkCallback overrides: + virtual bool Item(cChunk * a_Chunk) override; } ; |