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, 0 insertions, 13 deletions
diff --git a/src/effects/particle_defs.h b/src/effects/particle_defs.h
deleted file mode 100644
index dcbb830..0000000
--- a/src/effects/particle_defs.h
+++ /dev/null
@@ -1,13 +0,0 @@
-// 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];
-};