blob: d8b0f885ca28c58a81c5c496201eaae0f506a45c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "scenery-cell.hpp"
#include "src/anim-atlas.hpp"
#include "loader/loader.hpp"
#include "serialize/json-helper.hpp"
#include "serialize/scenery.hpp"
#include "serialize/json-wrapper.hpp"
#include "serialize/corrade-array.hpp"
namespace floormat {
Array<scenery_cell> scenery_cell::load_atlases_from_json()
{
char buf[fm_FILENAME_MAX];
auto path = loader.make_atlas_path(buf, loader.SCENERY_PATH, "scenery.json"_s);
return json_helper::from_json<Array<scenery_cell>>(path);
}
} // namespace floormat
|