mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
29 lines
581 B
C++
29 lines
581 B
C++
#include "ManorPortal.h"
|
|
|
|
void AManorPortal::UnlockPortal(AFortPlayerController* Player) {
|
|
}
|
|
|
|
void AManorPortal::OpenUnlockMenu(AFortPlayerController* Player) {
|
|
}
|
|
|
|
bool AManorPortal::IsProfileValidToReadPortalAvailability(AFortPlayerController* Player) {
|
|
return false;
|
|
}
|
|
|
|
bool AManorPortal::IsPortalUnlocked(AFortPlayerController* Player) {
|
|
return false;
|
|
}
|
|
|
|
int32 AManorPortal::GetPlayerCurrencyAmount(AFortPlayerController* Player) {
|
|
return 0;
|
|
}
|
|
|
|
int32 AManorPortal::GetCurrencyCost(AFortPlayerController* Player) {
|
|
return 0;
|
|
}
|
|
|
|
|
|
AManorPortal::AManorPortal() {
|
|
}
|
|
|