2020-02-12 20:22:49 +00:00
|
|
|
/// Animation frame counts
|
|
|
|
/// ----------------------
|
2020-04-19 17:38:09 +00:00
|
|
|
#include "th02/sprites/cels.h"
|
|
|
|
|
2020-04-18 12:41:47 +00:00
|
|
|
#define HITSHOT_CELS 4
|
2020-02-12 20:22:49 +00:00
|
|
|
#define BULLET_CLOUD_CELS 4
|
|
|
|
#define BULLET_DECAY_CELS 4
|
|
|
|
|
|
|
|
// Directional bullets with one axis of symmetry; sprites cover 180 degrees
|
|
|
|
#define BULLET_D_CELS 16
|
|
|
|
// Vector bullets with no axis of symmetry; sprites cover all 360 degrees
|
|
|
|
#define BULLET_V_CELS 32
|
|
|
|
/// ----------------------
|