cOMS/particle/Particle.h

19 lines
271 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/Types.h"
struct Particle {
v3_f32 position;
};
#endif