blob: 4210db944b1e7aab73bce32a9b1c927e67815edc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "tile-image.hpp"
namespace floormat {
bool operator==(const tile_image& a, const tile_image& b) noexcept
{
return a.atlas == b.atlas && a.variant == b.variant;
}
} // namespace floormat
|