mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
22 lines
951 B
C
22 lines
951 B
C
#ifndef POKEPLATINUM_BERRY_PATCH_GRAPHICS_H
|
|
#define POKEPLATINUM_BERRY_PATCH_GRAPHICS_H
|
|
|
|
#include "struct_decls/struct_02061AB4_decl.h"
|
|
|
|
#include "billboard.h"
|
|
|
|
BOOL BerryPatchGraphics_IsBerryPatch(int graphicsID);
|
|
int BerryPatchGraphics_GetCurrentGraphicsResourceID(const MapObject *mapObject);
|
|
void BerryPatchGraphics_MarkForUpdate(MapObject *mapObject);
|
|
void BerryPatchGraphics_NewData(MapObject *mapObject);
|
|
void BerryPatchGraphics_UpdateGrowthStage(MapObject *mapObject);
|
|
void BerryPatchGraphics_NoOp(MapObject *mapObject);
|
|
void BerryPatchGraphics_NewGraphics(MapObject *mapObject);
|
|
void BerryPatchGraphics_UpdateGraphics(MapObject *mapObject);
|
|
void BerryPatchGraphics_FreeGraphics(MapObject *mapObject);
|
|
void BerryPatchGraphics_PauseGraphics(MapObject *mapObject);
|
|
void BerryPatchGraphics_ResumeGraphics(MapObject *mapObject);
|
|
Billboard *BerryPatchGraphics_GetGraphicsObject(MapObject *mapObject);
|
|
|
|
#endif // POKEPLATINUM_BERRY_PATCH_GRAPHICS_H
|