RingRacers/src/objects/objects.hpp

19 lines
320 B
C++

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