2025-05-07 21:38:27 +01:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "GameFramework/PlayerState.h"
|
|
|
|
#include "MyPlayerState.generated.h"
|
|
|
|
|
|
|
|
/**
|
2025-05-09 16:18:28 +01:00
|
|
|
*
|
2025-05-07 21:38:27 +01:00
|
|
|
*/
|
|
|
|
UCLASS()
|
2025-05-09 16:18:28 +01:00
|
|
|
class MYPROJECT_API AMyPlayerState : public APlayerState {
|
|
|
|
|
|
|
|
GENERATED_BODY()
|
2025-05-07 21:38:27 +01:00
|
|
|
};
|