pokeplatinum/src/height_weight_data.c
scbroede f37259bb74
document battle regulations (#833)
Co-authored-by: Nathan <nate0001@gmail.com>
2025-12-10 21:58:50 -08:00

21 lines
494 B
C

#include "height_weight_data.h"
#include <nitro.h>
#include "constants/heap.h"
#include "pokedex_heightweight.h"
HeightWeightData *HeightWeightData_Load(enum HeapID heapID)
{
HeightWeightData *data = Pokedex_HeightWeightData(heapID);
Pokedex_HeightWeightData_Load(data, FALSE, heapID);
return data;
}
void HeightWeightData_Free(HeightWeightData *heightWeightData)
{
Pokedex_HeightWeightData_Release(heightWeightData);
Pokedex_HeightWeightData_Free(heightWeightData);
}