NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
eggScreen.hpp
1#pragma once
2
3#include <types.h>
4
5namespace EGG {
6
7class Screen {
8public:
9 char pad[0x100];
10
11 static void Initialize(const unsigned short *, const unsigned short *, Screen *);
12 static void SetTVModeDefault();
13 void CopyFromAnother(const Screen &);
14};
15
16} // namespace EGG