diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-23 15:33:38 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-23 15:34:12 +0100 |
commit | eb4922fc429764504a7e94e8c712c368c51685f2 (patch) | |
tree | dc2338c69f7811c46c8820846d62dca61271e7a7 /editor/app.cpp | |
parent | 62effff4a9bb2cddd515f6d6123c7ed141258ac1 (diff) |
scenery: add table
Diffstat (limited to 'editor/app.cpp')
-rw-r--r-- | editor/app.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/app.cpp b/editor/app.cpp index 9f8914f0..4fcc051b 100644 --- a/editor/app.cpp +++ b/editor/app.cpp @@ -16,7 +16,8 @@ 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")} + _door{loader.anim_atlas("door-close")}, + _table{loader.anim_atlas("table")} { world& w = M->world(); chunk_coords coord{0 ,0}; |