mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 17:05:09 +00:00
25 lines
442 B
C
25 lines
442 B
C
|
#pragma once
|
||
|
|
||
|
#include "heap/seadDisposer.h"
|
||
|
#include "hostio/seadHostIONode.h"
|
||
|
#include "prim/seadSafeString.h"
|
||
|
|
||
|
namespace sead
|
||
|
{
|
||
|
class GameConfig : public hostio::Node
|
||
|
{
|
||
|
SEAD_SINGLETON_DISPOSER(GameConfig)
|
||
|
GameConfig();
|
||
|
virtual ~GameConfig();
|
||
|
|
||
|
static const SafeString cNodeName;
|
||
|
|
||
|
protected:
|
||
|
struct FileWriteCallback
|
||
|
{
|
||
|
virtual ~FileWriteCallback();
|
||
|
virtual void save();
|
||
|
};
|
||
|
};
|
||
|
} // namespace sead
|