| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "filedevice/nin/seadNinFileDeviceBaseNin.h" |
| 4 | |
| 5 | namespace sead |
| 6 | { |
| 7 | class NinSaveFileDevice : public NinFileDeviceBase |
| 8 | { |
| 9 | SEAD_RTTI_OVERRIDE(NinSaveFileDevice, NinFileDeviceBase) |
| 10 | |
| 11 | public: |
| 12 | explicit NinSaveFileDevice(const SafeString& mount); |
| 13 | bool tryCommit(); |
| 14 | }; |
| 15 | } // namespace sead |
| 16 |