From 11555a2a3c2f5fe9107819dd167d930c78702c36 Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 7 Dec 2023 16:06:22 -0800 Subject: [PATCH] Add objects/objects.hpp, common header for object classes --- src/objects/objects.hpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/objects/objects.hpp diff --git a/src/objects/objects.hpp b/src/objects/objects.hpp new file mode 100644 index 000000000..dd8869ccc --- /dev/null +++ b/src/objects/objects.hpp @@ -0,0 +1,19 @@ +#ifndef objects_objects_hpp +#define objects_objects_hpp + +#include "../math/fixed.hpp" +#include "../math/vec.hpp" +#include "../mobj.hpp" + +#include "../k_objects.h" + +namespace srb2::objects +{ + +using srb2::Mobj; +using srb2::math::Fixed; +using srb2::math::Vec2; + +}; // namespace srb2::objects + +#endif/*objects_objects_hpp*/