DRG-Femboy-Voice/Source/FSD/Private/ControllerIconSettings.cpp
2025-04-15 12:39:31 -07:00

21 lines
620 B
C++
Executable file

#include "ControllerIconSettings.h"
bool UControllerIconSettings::FindMouseKeyboardKeyIcon(FKey Key, FActionIconMapping& KeyIcon) {
return false;
}
bool UControllerIconSettings::FindKeyIcon(FKey Key, FActionIconMapping& KeyIcon) {
return false;
}
bool UControllerIconSettings::FindControllerKeyIcon(FKey Key, FActionIconMapping& KeyIcon) {
return false;
}
UControllerIconSettings::UControllerIconSettings() {
this->Xbox_KeyIcons.AddDefaulted(20);
this->Playstation_KeyIcons.AddDefaulted(20);
this->Playstation5_KeyIcons.AddDefaulted(20);
this->MouseKeyboard_KeyIcons.AddDefaulted(58);
}