boo/include/inputdev/GenericPad.hpp
2015-08-18 08:00:24 -10:00

21 lines
271 B
C++

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