diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-09-26 19:13:19 +0200 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-09-26 19:13:19 +0200 |
commit | a3f940f47c8981146feed66225c1dd8066bac0e2 (patch) | |
tree | 7b8cb0de72a5a7e47310f8a06088d4b8156eec1c /src/Blocks/BlockHandler.h | |
parent | Merge pull request #1419 from mc-server/redstoneTests (diff) | |
download | cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar.gz cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar.bz2 cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar.lz cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar.xz cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.tar.zst cuberite-a3f940f47c8981146feed66225c1dd8066bac0e2.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Blocks/BlockHandler.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Blocks/BlockHandler.h b/src/Blocks/BlockHandler.h index 3a8115da0..83de836cb 100644 --- a/src/Blocks/BlockHandler.h +++ b/src/Blocks/BlockHandler.h @@ -2,10 +2,6 @@ #pragma once #include "../Defines.h" -#include "../Item.h" -#include "WorldInterface.h" -#include "ChunkInterface.h" -#include "BlockPluginInterface.h" @@ -14,6 +10,10 @@ // fwd: class cPlayer; class cChunk; +class cBlockPluginInterface; +class cChunkInterface; +class cWorldInterface; +class cItems; |