mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-17 03:19:15 +01:00
7e8782c114
Co-authored-by: Mr-Wiseguy <mrwiseguyromhacking@gmail.com>
10 lines
254 B
C++
10 lines
254 B
C++
#ifndef __RECOMP_OVERLAYS_H__
|
|
#define __RECOMP_OVERLAYS_H__
|
|
|
|
#include <cstdint>
|
|
|
|
extern "C" void load_overlays(uint32_t rom, int32_t ram_addr, uint32_t size);
|
|
extern "C" void unload_overlays(int32_t ram_addr, uint32_t size);
|
|
void init_overlays();
|
|
|
|
#endif |