mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
483 B
C++
18 lines
483 B
C++
#include "FortMinigamePlayerStartComponent.h"
|
|
|
|
void UFortMinigamePlayerStartComponent::SetPlayerCheckpoint(APlayerState* Player, float Value) {
|
|
}
|
|
|
|
void UFortMinigamePlayerStartComponent::ResetCheckpoints() {
|
|
}
|
|
|
|
bool UFortMinigamePlayerStartComponent::GetPlayerCheckpointValue(APlayerState* Player, float& OutValue) const {
|
|
return false;
|
|
}
|
|
|
|
UFortMinigamePlayerStartComponent::UFortMinigamePlayerStartComponent() {
|
|
this->PlayerStart = NULL;
|
|
this->bIsCheckpoint = false;
|
|
}
|
|
|