X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FBlock.hpp;h=0bb5fd8964b0655dae6addb1dd49903cf89d08ff;hb=c04ea5a6f67d446ea29aa2e88dc4c666956d7732;hp=9fd545b3813ce5c24e244e42bbb593b75606e690;hpb=d71d636af8b6f493abe537088464d1dc6b816c04;p=blank.git diff --git a/src/world/Block.hpp b/src/world/Block.hpp index 9fd545b..0bb5fd8 100644 --- a/src/world/Block.hpp +++ b/src/world/Block.hpp @@ -1,6 +1,7 @@ #ifndef BLANK_WORLD_BLOCK_HPP_ #define BLANK_WORLD_BLOCK_HPP_ +#include #include @@ -130,6 +131,12 @@ private: }; +bool operator ==(const Block &, const Block &); + +std::ostream &operator <<(std::ostream &, const Block &); +std::ostream &operator <<(std::ostream &, const Block::Face &); +std::ostream &operator <<(std::ostream &, const Block::Turn &); + } #endif