summaryrefslogtreecommitdiff
path: root/src/deathpart.c
diff options
context:
space:
mode:
authorkdx <kikoodx@paranoici.org>2023-03-18 21:54:01 +0100
committerkdx <kikoodx@paranoici.org>2023-03-18 21:55:14 +0100
commit7fbb779c5f1055461b0f38d83035725ff7cd3b77 (patch)
tree5464128ba864878f252ed8b4ee6072a6618a2716 /src/deathpart.c
parent11b10c227cfccec717b8b7206f33a8bce24a54dc (diff)
downloadhyperultra-7fbb779c5f1055461b0f38d83035725ff7cd3b77.tar.gz
abused macros
Diffstat (limited to 'src/deathpart.c')
-rw-r--r--src/deathpart.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/deathpart.c b/src/deathpart.c
new file mode 100644
index 0000000..e7a9dab
--- /dev/null
+++ b/src/deathpart.c
@@ -0,0 +1,14 @@
+#include "entityimpl.h"
+
+IMPL_UPDATE()
+}
+
+IMPL_DRAW()
+ LZY_DrawSetColor(BLACK);
+ LZY_DrawRect(this->pos[0] - this->width / 2,
+ this->pos[1] - this->height / 2,
+ this->width, this->height);
+}
+
+IMPL_INIT(deathpart)
+}