| 142 | } |
| 143 | |
| 144 | Json Tileset::imageFileReference(String const& fileName) const { |
| 145 | String tileImagePath = unixFileJoin(imageDirName(relativePathBase()), fileName); |
| 146 | return JsonObject{{"image", tileImagePath}}; |
| 147 | } |
| 148 | |
| 149 | Json Tileset::tileImageReference(String const& tileName, String const& database) const { |
| 150 | String tileImageName = unixFileJoin(database, tileName + ".png"); |
nothing calls this directly
no test coverage detected