feat(profile): refactor lua, bc code

This commit is contained in:
phaneron 2026-04-01 17:37:40 -04:00
parent e79ee08905
commit 37db5336e4
40 changed files with 3424 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#ifndef MAP_LIQUID_PARTICLE_H
#define MAP_LIQUID_PARTICLE_H
DECLARE_STRUCT(LiquidParticle);
#include "tempest/vector.h"
struct LiquidParticle {
C3Vector position;
float size;
};
#endif