diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-04 15:51:00 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-04 15:51:00 +0100 |
| commit | e1323d03c1271c42f5d120cd256b38c6c20bb793 (patch) | |
| tree | ab31456c165adaff42699a6a20fcd6e8d3a3d212 /src | |
| parent | 74f107569307e6c79a39a4daf92f430fdbb9bba0 (diff) | |
add some test animations
Diffstat (limited to 'src')
| -rw-r--r-- | src/scenery.cpp | 7 | ||||
| -rw-r--r-- | src/scenery.hpp | 13 |
2 files changed, 20 insertions, 0 deletions
diff --git a/src/scenery.cpp b/src/scenery.cpp new file mode 100644 index 00000000..fde0cb56 --- /dev/null +++ b/src/scenery.cpp @@ -0,0 +1,7 @@ +#include "scenery.hpp" + +namespace floormat { + + + +} // namespace floormat diff --git a/src/scenery.hpp b/src/scenery.hpp new file mode 100644 index 00000000..7468cec2 --- /dev/null +++ b/src/scenery.hpp @@ -0,0 +1,13 @@ +#pragma once +#include "compat/integer-types.hpp" + +namespace floormat { + +using scenery_t = std::uint16_t; +using scenery_frame_t = std::uint8_t; + +enum class scenery : scenery_t { + none, door_closed, door_empty, +}; + +} // namespace floormat |
