boo/include/inputdev/CGenericPad.hpp

21 lines
272 B
C++
Raw Normal View History

2015-04-19 20:16:50 +00:00
#ifndef CGENERICPAD_HPP
#define CGENERICPAD_HPP
#include "CDeviceBase.hpp"
2015-04-29 10:24:39 +00:00
namespace boo
{
class CGenericPad final : public CDeviceBase
{
public:
CGenericPad(CDeviceToken* token);
~CGenericPad();
void deviceDisconnected();
};
2015-04-29 10:24:39 +00:00
}
2015-04-19 20:16:50 +00:00
#endif // CGENERICPAD_HPP