mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
22 lines
511 B
C++
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() {
|
|
}
|
|
|