Files
FNGameProj/Source/FortniteGame/Private/FortMobileKismetLibrary.cpp
T
2024-03-03 23:44:39 +01:00

22 lines
511 B
C++

#include "FortMobileKismetLibrary.h"
bool UFortMobileKismetLibrary::GetTapToFireEnabled(UObject* WorldContextObject) {
return false;
}
bool UFortMobileKismetLibrary::GetDedicatedButtonEnabled(UObject* WorldContextObject) {
return false;
}
bool UFortMobileKismetLibrary::GetAutoFireEnabled(UObject* WorldContextObject) {
return false;
}
bool UFortMobileKismetLibrary::Get3DTouchEnabled(UObject* WorldContextObject) {
return false;
}
UFortMobileKismetLibrary::UFortMobileKismetLibrary() {
}