presidents-brigade/Source/PresidentsBrigade/MarkerActor.h
2022-11-06 18:45:57 -08:00

27 lines
559 B
C++
Executable File

// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "GameFramework/Actor.h"
#include "MarkerActor.generated.h"
UCLASS()
class PRESIDENTSBRIGADE_API AMarkerActor : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AMarkerActor();
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
};