28 lines
540 B
C
28 lines
540 B
C
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "HYInteractableActor.h"
|
||
|
#include "HYSaveGameActor.generated.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class HWANYOUNG2_API AHYSaveGameActor : public AHYInteractableActor
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
// Sets default values for this actor's properties
|
||
|
AHYSaveGameActor();
|
||
|
|
||
|
void Interact_Implementation(APlayerController* Controller) override;
|
||
|
|
||
|
protected:
|
||
|
UPROPERTY(EditDefaultsOnly)
|
||
|
UStaticMeshComponent* SavepointMesh;
|
||
|
|
||
|
};
|