mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
16 lines
388 B
C
16 lines
388 B
C
#ifndef GUARD_UTIL_H
|
|
#define GUARD_UTIL_H
|
|
|
|
#include "sprite.h"
|
|
|
|
extern const u8 gMiscBlank_Gfx[];
|
|
extern const u32 gBitTable[];
|
|
|
|
u8 CreateInvisibleSpriteWithCallback(void (*)(struct Sprite *));
|
|
void StoreWordInTwoHalfwords(u16 *, u32);
|
|
void LoadWordFromTwoHalfwords(u16 *, u32 *);
|
|
u16 CalcCRC16(u8 *data, s32 length);
|
|
u16 CalcCRC16WithTable(u8 *data, s32 length);
|
|
|
|
#endif // GUARD_UTIL_H
|