diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-28 17:00:20 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-28 17:00:20 +0100 |
commit | a35d3eb228423dd0bc654ca253888c4032978923 (patch) | |
tree | f2ace769d51bdb48788143735a1d8adcb5544193 /editor | |
parent | 98ecfdd1ad673cf15af702cae7176ce653fee086 (diff) |
move hardcoded scenery to its own dir too
Diffstat (limited to 'editor')
-rw-r--r-- | editor/app.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/app.cpp b/editor/app.cpp index 9a897d57..850f19e3 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -16,9 +16,9 @@ app::app(fm_settings&& opts) : _floor2{loader.tile_atlas("metal1", {2, 2})}, _wall1{loader.tile_atlas("wood2", {2, 1})}, _wall2{loader.tile_atlas("wood1", {2, 1})}, - _door{loader.anim_atlas("door-close")}, - _table{loader.anim_atlas("table")}, - _control_panel(loader.anim_atlas("control-panel")) + _door{loader.anim_atlas("door-close", loader.SCENERY_PATH)}, + _table{loader.anim_atlas("table", loader.SCENERY_PATH)}, + _control_panel(loader.anim_atlas("control-panel", loader.SCENERY_PATH)) { world& w = M->world(); chunk_coords coord{0 ,0}; |