]> git.localhorst.tv Git - blank.git/blobdiff - src/world/block.cpp
check for entities under crosshair
[blank.git] / src / world / block.cpp
index aa91e7953a67238e1501d989ff5f397ec756bcca..54ceba081b035036164e6537919c8feca29e085e 100644 (file)
@@ -14,10 +14,6 @@ namespace blank {
 const NullShape BlockType::DEFAULT_SHAPE;
 
 
-bool operator ==(const Block &a, const Block &b) {
-       return a.type == b.type && a.orient == b.orient;
-}
-
 std::ostream &operator <<(std::ostream &out, const Block &block) {
        return out << "Block(" << block.type << ", " << block.GetFace() << ", " << block.GetTurn() << ')';
 }