boo/include/inputdev/GenericPad.hpp

21 lines
266 B
C++

#ifndef CGENERICPAD_HPP
#define CGENERICPAD_HPP
#include "DeviceBase.hpp"
namespace boo
{
class GenericPad final : public DeviceBase
{
public:
GenericPad(DeviceToken* token);
~GenericPad();
void deviceDisconnected();
};
}
#endif // CGENERICPAD_HPP