mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
427 B
C++
20 lines
427 B
C++
#include "FortSquadSelectorButton.h"
|
|
|
|
bool UFortSquadSelectorButton::TryGetStaticSquadDataBP(FHomebaseSquad& OutSquadData) const {
|
|
return false;
|
|
}
|
|
|
|
void UFortSquadSelectorButton::SetIdOfSquadToManageBP(const FName& SquadId) {
|
|
}
|
|
|
|
|
|
|
|
FName UFortSquadSelectorButton::GetIdOfSquadToManageBP() const {
|
|
return NAME_None;
|
|
}
|
|
|
|
UFortSquadSelectorButton::UFortSquadSelectorButton() {
|
|
this->SquadManagementScreenType = NULL;
|
|
}
|
|
|