diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-01 13:21:32 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-12-01 13:21:32 +0100 |
commit | 81f68a2c83c0c25259cd526c8bb4839caa361e8f (patch) | |
tree | ff2db492dbd3dddfc341370a4cf4b2a95abdae70 /loader/scenery.hpp | |
parent | 511d823c2dc2b917afed6a9c50ad940e5c58c5d5 (diff) |
serialize, loader, test: add serializing scenery
Diffstat (limited to 'loader/scenery.hpp')
-rw-r--r-- | loader/scenery.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/loader/scenery.hpp b/loader/scenery.hpp new file mode 100644 index 00000000..55f3f972 --- /dev/null +++ b/loader/scenery.hpp @@ -0,0 +1,13 @@ +#pragma once +#include "src/scenery.hpp" +#include <Corrade/Containers/String.h> + +namespace floormat { + +struct serialized_scenery final +{ + String name, descr; + scenery_proto proto; +}; + +} // namespace floormat |