mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
21 lines
494 B
C
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);
|
|
}
|