match most of OverlayManager.cpp

This commit is contained in:
Yanis002
2025-02-08 22:25:31 +01:00
parent 142e17b99d
commit f27b60d4fe
4 changed files with 97 additions and 5 deletions
+8
View File
@@ -1,6 +1,10 @@
#ifndef _NDS_OVERLAY_H
#define _NDS_OVERLAY_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct Overlay {
/* 00 */ unk32 mId;
/* 04 */ void *mBaseAddress;
@@ -27,4 +31,8 @@ bool Overlay_Destroy(Overlay *overlay);
bool Overlay_Load(Overlay *overlay, unk32 param2);
bool Overlay_Unload(Overlay *overlay, unk32 param2);
#ifdef __cplusplus
}
#endif
#endif