mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-08 16:54:24 +01:00
9 lines
225 B
C++
9 lines
225 B
C++
#pragma once
|
|
#include "vfsDevice.h"
|
|
|
|
class vfsDeviceLocalFile : public vfsDevice
|
|
{
|
|
public:
|
|
virtual std::shared_ptr<vfsFileBase> GetNewFileStream() override;
|
|
virtual std::shared_ptr<vfsDirBase> GetNewDirStream() override;
|
|
}; |