40 lines
941 B
C++
40 lines
941 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Components/ActorComponent.h"
|
|
#include "Components/TextBlock.h"
|
|
#include "Blueprint/UserWidget.h"
|
|
#include "QuestSystem.generated.h"
|
|
|
|
// UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
|
|
// class UQuest : public UObject
|
|
// {
|
|
// GENERATED_BODY()
|
|
//
|
|
// public:
|
|
//
|
|
// };
|
|
|
|
UCLASS(ClassGroup=(Custom), meta=(BlueprintSpawnableComponent))
|
|
class THE_TWILIGHT_ABYSS_API UQuestSystem : public UActorComponent
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
// Sets default values for this component's properties
|
|
UQuestSystem();
|
|
|
|
protected:
|
|
// Called when the game starts
|
|
virtual void BeginPlay() override;
|
|
|
|
UPROPERTY()
|
|
TSubclassOf<UUserWidget> QuestWidget;
|
|
|
|
public:
|
|
// Called every frame
|
|
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
|
|
};
|