You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
363 B
17 lines
363 B
|
1 year ago
|
#include "controls/control_mode.hpp"
|
||
|
|
|
||
|
|
namespace devilution {
|
||
|
|
|
||
|
|
ControlTypes ControlMode = ControlTypes::None;
|
||
|
|
ControlTypes ControlDevice = ControlTypes::None;
|
||
|
|
|
||
|
|
GamepadLayout GamepadType =
|
||
|
|
#if defined(DEVILUTIONX_GAMEPAD_TYPE)
|
||
|
|
GamepadLayout::
|
||
|
|
DEVILUTIONX_GAMEPAD_TYPE;
|
||
|
|
#else
|
||
|
|
GamepadLayout::Generic;
|
||
|
|
#endif
|
||
|
|
|
||
|
|
} // namespace devilution
|