mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
16 lines
451 B
C++
16 lines
451 B
C++
#include "FriendCodeShareButtonBase.h"
|
|
|
|
void UFriendCodeShareButtonBase::OnQueryUnredeemedFriendCodesComplete(bool bSuccess, const TArray<FFriendCode>& FriendCodes) {
|
|
}
|
|
|
|
|
|
void UFriendCodeShareButtonBase::OnFriendCodeIssued(bool bSuccess, const FFriendCode& FriendCode) {
|
|
}
|
|
|
|
UFriendCodeShareButtonBase::UFriendCodeShareButtonBase() {
|
|
this->FriendCodeListClass = NULL;
|
|
this->NumSharesRemainingText = NULL;
|
|
this->InviteCodeMessage = NULL;
|
|
}
|
|
|