added placeholder cpp files to the project

This commit is contained in:
2026-06-19 16:30:11 -07:00
parent 532e9cc1ae
commit fc127763b2
8 changed files with 138 additions and 0 deletions
@@ -0,0 +1,34 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "PlaceholderCharacter.h"
// Sets default values
APlaceholderCharacter::APlaceholderCharacter()
{
// Set this character to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
}
// Called when the game starts or when spawned
void APlaceholderCharacter::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
void APlaceholderCharacter::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
// Called to bind functionality to input
void APlaceholderCharacter::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
}