Fix data folder

This commit is contained in:
2025-03-19 12:47:54 -04:00
parent 13cc7f2104
commit e6f67e1052
3 changed files with 13 additions and 1 deletions

View File

@@ -8,6 +8,18 @@
"color": "#FFFFFF",
"pallet": []
},
{
"mnemonic-id" : "stone",
"display-name" : "",
"solid": true,
"does-random-ticc": false,
"does-forced-ticc": false,
"color": "#FFFFFF",
"pallet": [],
"random-ticc-func": "zzyyzz",
"forced-ticc-func": "zzyyzz",
"drops" : null
},
{
"mnemonic-id" : "stone",
"display-name" : "",

View File

@@ -44,7 +44,7 @@ std::string read_file(const std::string& file_path)
int main(int argc, char** argv) {
std::string content = read_file("data/tiles/base_tiles.json");
std::string content = read_file("assets/data/tiles/base_tiles.json");
auto [text, parse_error] = json::parse(content);