mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
27 lines
722 B
C++
27 lines
722 B
C++
#include "FortUITeamInfo.h"
|
|
|
|
bool UFortUITeamInfo::IsTeamMemberSynchronizing(const FUniqueNetIdRepl& PlayerID) {
|
|
return false;
|
|
}
|
|
|
|
void UFortUITeamInfo::GetTeamMembers(TArray<FFortTeamMemberInfo>& TeamMembers) const {
|
|
}
|
|
|
|
void UFortUITeamInfo::GetTeamMemberIDs(TArray<FUniqueNetIdRepl>& TeamMemberIDs) const {
|
|
}
|
|
|
|
bool UFortUITeamInfo::GetTeamMember(int32 MemberIndex, FFortTeamMemberInfo& OutMember) const {
|
|
return false;
|
|
}
|
|
|
|
void UFortUITeamInfo::GetTeamHitPointFractions(TArray<float>& HealthFractions, TArray<float>& ShieldFractions) const {
|
|
}
|
|
|
|
UFortUITeamInfo::UFortUITeamInfo() {
|
|
this->TeamContext = NULL;
|
|
this->TeamAssignment = 255;
|
|
this->TotalFilledSlots = 0;
|
|
this->PreviousFilledSlots = 0;
|
|
}
|
|
|