cOMS/particle/Particle.h
2024-09-11 05:56:09 +02:00

19 lines
275 B
C

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