mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add objects/objects.hpp, common header for object classes
This commit is contained in:
parent
a96a64dff6
commit
11555a2a3c
1 changed files with 19 additions and 0 deletions
19
src/objects/objects.hpp
Normal file
19
src/objects/objects.hpp
Normal 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*/
|
||||
Loading…
Add table
Reference in a new issue