Illusion-UE5/hwanyoung2/Source/hwanyoung2/HYEnemyBase.cpp

35 lines
712 B
C++
Raw Normal View History

// Fill out your copyright notice in the Description page of Project Settings.
2024-10-03 15:55:43 +02:00
#include "HYEnemyBase.h"
// Sets default values
2024-10-03 15:55:43 +02:00
AHYEnemyBase::AHYEnemyBase()
{
2024-10-03 15:55:43 +02:00
// 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
2024-10-03 15:55:43 +02:00
void AHYEnemyBase::BeginPlay()
{
Super::BeginPlay();
}
// Called every frame
2024-10-03 15:55:43 +02:00
void AHYEnemyBase::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
// Called to bind functionality to input
2024-10-03 15:55:43 +02:00
void AHYEnemyBase::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent)
{
Super::SetupPlayerInputComponent(PlayerInputComponent);
}