mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
|
|
#include "Emu/Io/usb_device.h"
|
|
#include "Utilities/Config.h"
|
|
|
|
class usb_device_vfs : public usb_device_emulated
|
|
{
|
|
public:
|
|
usb_device_vfs(const cfg::device_info& device_info, const std::array<u8, 7>& location);
|
|
~usb_device_vfs();
|
|
};
|