mirror of
https://github.com/AxioDL/boo.git
synced 2025-07-03 19:55:58 +00:00
18 lines
349 B
C++
18 lines
349 B
C++
#ifndef CDOLPHINSMASHADAPTER_HPP
|
|
#define CDOLPHINSMASHADAPTER_HPP
|
|
|
|
#include "CDeviceBase.hpp"
|
|
|
|
class CDolphinSmashAdapter final : public CDeviceBase
|
|
{
|
|
void deviceDisconnected();
|
|
public:
|
|
CDolphinSmashAdapter(CDeviceToken* token, IHIDDevice* hidDev)
|
|
: CDeviceBase(token, hidDev)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
#endif // CDOLPHINSMASHADAPTER_HPP
|