Files
boo/InputDeviceClasses.cpp
T

16 lines
322 B
C++
Raw Normal View History

2015-08-18 12:43:30 -10:00
#include "boo/inputdev/DeviceSignature.hpp"
#include "boo/inputdev/DolphinSmashAdapter.hpp"
#include "boo/inputdev/DualshockPad.hpp"
2015-04-29 21:01:55 -10:00
namespace boo
{
2015-08-18 09:40:26 -10:00
const DeviceSignature BOO_DEVICE_SIGS[] =
2015-04-29 21:01:55 -10:00
{
2015-08-18 09:40:26 -10:00
DEVICE_SIG(DolphinSmashAdapter, 0x57e, 0x337),
DEVICE_SIG(DualshockPad, 0x54c, 0x268),
2015-04-29 21:01:55 -10:00
DEVICE_SIG_SENTINEL()
};
}