diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-17 13:19:52 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-17 15:34:18 -0500 |
commit | 225147a94f8baf30c6e7db7084c5b8663d52ca3c (patch) | |
tree | 3b2ce7a2ed30d5222053c5e11e5011ad66e49cd0 /include/pokemon.h | |
parent | 4024b3f1b3a9d51e42fc8a49cf361bd22484c82f (diff) |
Document Spinda spot algorithm
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 28460bbe6..8039a4fdd 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -239,10 +239,13 @@ struct BattleMove u8 flags; }; +#define SPINDA_SPOT_WIDTH 16 +#define SPINDA_SPOT_HEIGHT 16 + struct SpindaSpot { u8 x, y; - u16 image[16]; + u16 image[SPINDA_SPOT_HEIGHT]; }; struct __attribute__((packed)) LevelUpMove |