mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
13 lines
270 B
C++
13 lines
270 B
C++
#include "AthenaGameMessageData.h"
|
|
|
|
FAthenaGameMessageData::FAthenaGameMessageData() {
|
|
MsgType = EAthenaGameMsgType::None;
|
|
MsgSound = NULL;
|
|
MsgDelay = 1;
|
|
bIsTeamBased = false;
|
|
TeamIndex = 0;
|
|
DisplayTime = 1;
|
|
TargetPlayerController = NULL;
|
|
}
|
|
|