blob: 784bd4f57618f1622ddb76666b2e7aa453930538 (
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
|