Live Config
Loading...
Searching...
No Matches
LiveConfigPlayerControllerComponent.h
1// Copyright (c) 2026 Nicholas Arthur
2// Licensed under the MIT License
3
4#pragma once
5
6#include "CoreMinimal.h"
7#include "Components/ActorComponent.h"
8#include "LiveConfigProfile.h"
9#include "LiveConfigPlayerControllerComponent.generated.h"
10
15UCLASS(ClassGroup=(LiveConfig), meta=(BlueprintSpawnableComponent))
16class LIVECONFIG_API ULiveConfigPlayerControllerComponent : public UActorComponent
17{
18 GENERATED_BODY()
19
20public:
21 ULiveConfigPlayerControllerComponent();
22
27 UFUNCTION(Server, Reliable, WithValidation)
28 void ServerSetActiveProfileData(FLiveConfigProfile Profile);
29};
Definition LiveConfig.Build.cs:7
Definition LiveConfigProfile.h:24