boo/include/inputdev/GenericPad.hpp

21 lines
266 B
C++
Raw Normal View History

2015-04-19 20:16:50 +00:00
#ifndef CGENERICPAD_HPP
#define CGENERICPAD_HPP
2015-08-18 18:00:24 +00:00
#include "DeviceBase.hpp"
2015-04-29 10:24:39 +00:00
namespace boo
{
2015-08-18 19:40:26 +00:00
class GenericPad final : public DeviceBase
{
public:
2015-08-18 19:40:26 +00:00
GenericPad(DeviceToken* token);
~GenericPad();
void deviceDisconnected();
};
2015-04-29 10:24:39 +00:00
}
2015-04-19 20:16:50 +00:00
#endif // CGENERICPAD_HPP