mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
457 B
C++
18 lines
457 B
C++
#include "FortPrivacyBase.h"
|
|
|
|
void UFortPrivacyBase::HandlePrivacyButtonSelected(UCommonButton* SelectedPrivacyButton, int32 ButtonIndex) {
|
|
}
|
|
|
|
void UFortPrivacyBase::ApplyPrivacySetting() {
|
|
}
|
|
|
|
void UFortPrivacyBase::AddPrivacyButton(UCommonButton* PrivacyButton, EPartyType PartyType) {
|
|
}
|
|
|
|
UFortPrivacyBase::UFortPrivacyBase() {
|
|
this->AllowFriendsOfFriendsButton = NULL;
|
|
this->AllowFriendsOfFriendsContainer = NULL;
|
|
this->ButtonGroup = NULL;
|
|
}
|
|
|