mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-18 04:32:30 +00:00
19 lines
320 B
C++
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*/
|