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*/