mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 09:15:13 +00:00
17 lines
397 B
C++
17 lines
397 B
C++
#pragma once
|
|
|
|
#include "filedevice/nin/seadNinFileDeviceBaseNin.h"
|
|
|
|
namespace sead
|
|
{
|
|
class NinHostIOFileDevice : public NinFileDeviceBase
|
|
{
|
|
SEAD_RTTI_OVERRIDE(NinHostIOFileDevice, NinFileDeviceBase)
|
|
|
|
public:
|
|
NinHostIOFileDevice();
|
|
|
|
bool doIsAvailable_() const override;
|
|
bool formatPathForFS_(BufferedSafeString* out, const SafeString& path) const override;
|
|
};
|
|
} // namespace sead
|