Add objects/objects.hpp, common header for object classes

This commit is contained in:
James R 2023-12-07 16:06:22 -08:00
parent a96a64dff6
commit 11555a2a3c

19
src/objects/objects.hpp Normal file
View file

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