| 43 | TileProto ToProto() const; |
| 44 | |
| 45 | bool operator==(const Tile& other) const { |
| 46 | return dimensions() == other.dimensions(); |
| 47 | } |
| 48 | bool operator!=(const Tile& other) const { return !(*this == other); } |
| 49 | |
| 50 | string ToString() const; |
nothing calls this directly
no test coverage detected