mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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() {
|
|
}
|
|
|