19 lines
356 B
C++
19 lines
356 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameFramework/Actor.h"
|
|
#include "NPC.generated.h"
|
|
|
|
UCLASS()
|
|
class SEVENSTARS_API ANPC : public AActor
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
ANPC();
|
|
virtual void BeginPlay() override;
|
|
virtual void Tick(float DeltaTime) override;
|
|
};
|