boo/InputDeviceClasses.cpp

16 lines
322 B
C++
Raw Normal View History

2015-08-18 22:43:30 +00:00
#include "boo/inputdev/DeviceSignature.hpp"
#include "boo/inputdev/DolphinSmashAdapter.hpp"
#include "boo/inputdev/DualshockPad.hpp"
namespace boo
{
2015-08-18 19:40:26 +00:00
const DeviceSignature BOO_DEVICE_SIGS[] =
{
2015-08-18 19:40:26 +00:00
DEVICE_SIG(DolphinSmashAdapter, 0x57e, 0x337),
DEVICE_SIG(DualshockPad, 0x54c, 0x268),
DEVICE_SIG_SENTINEL()
};
}