mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-25 12:45:17 +00:00
15 lines
311 B
C++
15 lines
311 B
C++
#pragma once
|
|
|
|
#include "filedevice/nin/seadNinFileDeviceBaseNin.h"
|
|
|
|
namespace sead
|
|
{
|
|
class NinSaveFileDevice : public NinFileDeviceBase
|
|
{
|
|
SEAD_RTTI_OVERRIDE(NinSaveFileDevice, NinFileDeviceBase)
|
|
|
|
public:
|
|
explicit NinSaveFileDevice(const SafeString& mount);
|
|
bool tryCommit();
|
|
};
|
|
} // namespace sead
|