mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-27 19:04:28 +01:00
12 lines
243 B
C++
12 lines
243 B
C++
#pragma once
|
|
|
|
#include "Emu/Io/usb_device.h"
|
|
#include "util/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();
|
|
};
|