mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 02:05:55 -05:00
13 lines
338 B
C
13 lines
338 B
C
#ifndef POKEPLATINUM_CELL_TRANSFER_H
|
|
#define POKEPLATINUM_CELL_TRANSFER_H
|
|
|
|
#include <nnsys.h>
|
|
|
|
#include "constants/heap.h"
|
|
|
|
NNSG2dCellTransferState *CellTransfer_New(int capacity, enum HeapID heapID);
|
|
void CellTransfer_Update(void);
|
|
void CellTransfer_Free(NNSG2dCellTransferState *transferStates);
|
|
|
|
#endif // POKEPLATINUM_CELL_TRANSFER_H
|