summary refs log tree commit diff
path: root/src/particles.c
diff options
context:
space:
mode:
authorzlago2024-10-26 20:21:15 +0200
committerzlago2024-10-26 20:22:08 +0200
commitee316a07cdfb01e52694edef2cc998e672e2885b (patch)
tree99ad4155267146e8b727905de539ddcaf1d0bcca /src/particles.c
parentd44d411e0eb3800ed883374b29c2863e1a863735 (diff)
redo the damage system
Diffstat (limited to 'src/particles.c')
-rw-r--r--src/particles.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/particles.c b/src/particles.c
new file mode 100644
index 0000000..3655f23
--- /dev/null
+++ b/src/particles.c
@@ -0,0 +1,6 @@
+#include <SDL2/SDL.h>
+
+SDL_Rect const particle_gray = {0, 0, 4, 4};
+SDL_Rect const particle_red = {4, 0, 4, 4};
+SDL_Rect const particle_orange = {8, 0, 4, 4};
+SDL_Rect const particle_white = {12, 0, 4, 4};