mirror of
https://github.com/encounter/boo.git
synced 2026-03-30 11:03:44 -07:00
24 lines
245 B
C++
24 lines
245 B
C++
#include "boo/inputdev/GenericPad.hpp"
|
|
#include "boo/inputdev/DeviceToken.hpp"
|
|
|
|
namespace boo
|
|
{
|
|
|
|
GenericPad::GenericPad(DeviceToken* token)
|
|
: DeviceBase(token)
|
|
{
|
|
|
|
}
|
|
|
|
GenericPad::~GenericPad()
|
|
{
|
|
|
|
}
|
|
|
|
void GenericPad::deviceDisconnected()
|
|
{
|
|
|
|
}
|
|
|
|
}
|