mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 12:35:23 -05:00
13 lines
287 B
C
13 lines
287 B
C
#ifndef GUARD_PLATFORM_H
|
|
#define GUARD_PLATFORM_H
|
|
|
|
#include "global.h"
|
|
|
|
|
|
void Platform_StoreSaveFile(void);
|
|
void Platform_ReadFlash(u16 sectorNum, u32 offset, u8 *dest, u32 size);
|
|
void Platform_QueueAudio(float *audioBuffer, s32 samplesPerFrame);
|
|
u16 Platform_GetKeyInput(void);
|
|
|
|
|
|
#endif |