cOMS/models/Location.h
2024-08-04 00:09:16 +02:00

19 lines
293 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef TOS_MODELS_LOCATION_H
#define TOS_MODELS_LOCATION_H
#include "../stdlib/Mathtypes.h"
struct Location {
v3_f32 position;
v4_f32 orientation;
};
#endif