| 77 | } |
| 78 | |
| 79 | bool Merge(VeinEdgeBitmask& other) |
| 80 | { |
| 81 | if (other.mat != this->mat) |
| 82 | return false; |
| 83 | |
| 84 | for (uint8_t i = 0; i < 4; i++) |
| 85 | { |
| 86 | this->edges[i] |= other.edges[i]; |
| 87 | this->corners[i] |= other.corners[i]; |
| 88 | } |
| 89 | |
| 90 | return true; |
| 91 | } |
| 92 | |
| 93 | bool Merge(df::block_square_event_mineralst* event) |
| 94 | { |
no test coverage detected