mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 13:49:54 +00:00
ba55d1248a
Matched InitDprize, InitCoin, InitCharm, and InitKey Consequently had to also make some progress on ALO and DPrize Also created FICG, not sure if it's in the right place
21 lines
221 B
C
21 lines
221 B
C
/**
|
|
* @file sw.h
|
|
*
|
|
* @brief Scene world?
|
|
*/
|
|
#ifndef SW_H
|
|
#define SW_H
|
|
|
|
#include "common.h"
|
|
|
|
// todo Implement struct.
|
|
struct SW
|
|
{
|
|
undefined1 padding[0x1c53];
|
|
DL dlDprize;
|
|
};
|
|
|
|
extern SW *g_psw;
|
|
|
|
#endif // SW_H
|