mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
13 lines
417 B
C++
13 lines
417 B
C++
#include "CommonInputPlatformData.h"
|
|
|
|
FCommonInputPlatformData::FCommonInputPlatformData() {
|
|
this->bSupported = false;
|
|
this->DefaultInputType = ECommonInputType::MouseAndKeyboard;
|
|
this->bSupportsMouseAndKeyboard = false;
|
|
this->bSupportsGamepad = false;
|
|
this->DefaultGamepadType = ECommonGamepadType::XboxOneController;
|
|
this->bCanChangeGamepadType = false;
|
|
this->bSupportsTouch = false;
|
|
}
|
|
|