haxis/Source/UnrealProject/Spawners/LobbySpawn.h

26 lines
580 B
C++

// Project Lab - NHTV Igad
#pragma once
#include "GameFramework/Actor.h"
#include "LobbySpawn.generated.h"
UCLASS()
class UNREALPROJECT_API ALobbySpawn : public AActor
{
GENERATED_BODY()
public:
ALobbySpawn();
virtual void BeginPlay() override;
UPROPERTY(EditAnywhere, Category = "Gamestate Components")
int32 assignedTeam;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Display)
class UStaticMeshComponent* displayMesh;
UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Display)
class UArrowComponent* displayArrow;
};