summaryrefslogtreecommitdiff
path: root/src/effects/particle_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/particle_defs.h')
-rw-r--r--src/effects/particle_defs.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/effects/particle_defs.h b/src/effects/particle_defs.h
new file mode 100644
index 0000000..dcbb830
--- /dev/null
+++ b/src/effects/particle_defs.h
@@ -0,0 +1,13 @@
+// This file is part of the 64k demo project.
+// It defines common structures for particle-based effects.
+
+#pragma once
+
+static const int NUM_PARTICLES = 10000;
+
+struct Particle {
+ float pos[4];
+ float vel[4];
+ float rot[4];
+ float color[4];
+};