mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
357 B
C++
15 lines
357 B
C++
#include "FortCharmPreviewActor.h"
|
|
|
|
void AFortCharmPreviewActor::SetActiveCharmSlot(int32 CharmSlotIn) {
|
|
}
|
|
|
|
|
|
void AFortCharmPreviewActor::ApplyMyCosmeticItemToHero(AFortPlayerPawn* PawnToModify, AFortPlayerController* FortPC) {
|
|
}
|
|
|
|
AFortCharmPreviewActor::AFortCharmPreviewActor() {
|
|
MyCosmeticItem = NULL;
|
|
CharmSlot = EFortCustomCharmType::Lapel;
|
|
}
|
|
|