FireballChain OK, start documenting

This commit is contained in:
Elliptic Ellipsis
2022-03-24 12:49:45 +00:00
parent 946bb8095b
commit 13e7c6a5ee
4 changed files with 147 additions and 73 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef PROJECTILE_WINDER_H
#define PROJECTILE_WINDER_H
#include "enemy.h"
#define WINDER_NUM_SEGMENTS 8
typedef struct {
Entity base;
s16 positions[2 * WINDER_NUM_SEGMENTS];
} WinderEntity;
#endif