]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Block.hpp
simple preloader
[blank.git] / src / world / Block.hpp
index 9fd545b3813ce5c24e244e42bbb593b75606e690..0bb5fd8964b0655dae6addb1dd49903cf89d08ff 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef BLANK_WORLD_BLOCK_HPP_
 #define BLANK_WORLD_BLOCK_HPP_
 
+#include <iosfwd>
 #include <glm/glm.hpp>
 
 
@@ -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