diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-01-07 23:53:43 -0500 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-01-07 23:53:43 -0500 |
commit | 79c64d2b7137f12cccf290ea7f495727ad6b4cca (patch) | |
tree | b2022ddfbc867bab3802465afbbdc7c3843460a9 /include/cable_car_util.h | |
parent | fd42bcc78ce229d13afc26af4c6d2dd0187b871d (diff) | |
parent | 6b38db228befa044a2cfe31ed78555e3f0bd3935 (diff) |
Merge branch 'master' into pokemon_storage_system
Diffstat (limited to 'include/cable_car_util.h')
-rw-r--r-- | include/cable_car_util.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/cable_car_util.h b/include/cable_car_util.h new file mode 100644 index 000000000..7126331a1 --- /dev/null +++ b/include/cable_car_util.h @@ -0,0 +1,13 @@ +#ifndef GUARD_CABLE_CAR_UTIL_H +#define GUARD_CABLE_CAR_UTIL_H + +// Exported type declarations + +// Exported RAM declarations + +// Exported ROM declarations + +void CableCarUtil_FillWrapped(void *dest, u16 value, u8 x, u8 y, u8 width, u8 height); +void CableCarUtil_CopyWrapped(void *dest, const u16 *src, u8 x, u8 y, u8 width, u8 height); + +#endif //GUARD_CABLE_CAR_UTIL_H |