mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
e324092e0a
* decomp 7 functions * match func_80138E54 * matched render_transition_stencil * renames * fix warnings * fix two warnings
18 lines
420 B
C
18 lines
420 B
C
#ifndef _OVERLAY_H_
|
|
#define _OVERLAY_H_
|
|
|
|
#include "common.h"
|
|
|
|
typedef struct ScreenOverlay {
|
|
/* 0x00 */ Color_RGB8 color;
|
|
/* 0x03 */ char unk_03;
|
|
/* 0x04 */ s32 screenPos[2][2];
|
|
/* 0x14 */ f32 alpha;
|
|
} ScreenOverlay; // size = 0x18
|
|
|
|
void _render_transition_stencil(u8, f32, ScreenOverlay*);
|
|
void func_80139F10(s32, s32, f32, s32, s32, s32, s32, s32);
|
|
void func_80138E54(s32, s32, s32, f32, f32);
|
|
|
|
#endif
|