mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-04-27 11:13:50 +00:00
13 lines
200 B
C
13 lines
200 B
C
#ifndef MAP_LIQUID_PARTICLE_H
|
|
#define MAP_LIQUID_PARTICLE_H
|
|
|
|
DECLARE_STRUCT(LiquidParticle);
|
|
|
|
#include "tempest/vector.h"
|
|
|
|
struct LiquidParticle {
|
|
C3Vector position;
|
|
float size;
|
|
};
|
|
|
|
#endif
|