diff options
author | scnorton <scnorton@biociphers.org> | 2017-09-08 14:05:45 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-09-08 14:05:45 -0400 |
commit | 823f8d6a0c827025f280e1d57fb71959ca529fbe (patch) | |
tree | 270b75f8fa7545e74b1174e682f52842c0278084 /include | |
parent | 9b98055ecc5174e92c1cf4bcad8f7a1ecc317581 (diff) |
get_berry_tree_graphics
Diffstat (limited to 'include')
-rw-r--r-- | include/berry.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/berry.h b/include/berry.h new file mode 100644 index 000000000..6d8d8d483 --- /dev/null +++ b/include/berry.h @@ -0,0 +1,17 @@ +// +// Created by Scott Norton on 9/8/17. +// + +#ifndef POKEEMERALD_BERRY_H +#define POKEEMERALD_BERRY_H + +#define NUM_BERRIES 44 + +extern const u8 *const gBerryTreeFieldObjectGraphicsIdTablePointers[NUM_BERRIES]; +extern const struct SpriteFrameImage *const gBerryTreePicTablePointers[NUM_BERRIES]; +extern const u8 *const gBerryTreePaletteSlotTablePointers[NUM_BERRIES]; + +u8 GetStageByBerryTreeId(u8); +u8 GetBerryTypeByBerryTreeId(u8); + +#endif //POKEEMERALD_BERRY_H |