mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 15:21:09 -04:00
13 lines
209 B
C
13 lines
209 B
C
#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
|