jumping-ship/Source/jumpingship/MyActor.h
Austin Szema 128f80fec9 Added the Unreal Project to the repo
Adding a Third Person Unreal Template project to the repo
2023-10-06 22:17:05 -04:00

27 lines
515 B
C++

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