19 lines
326 B
C++
19 lines
326 B
C++
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
|
||
|
#include "EnemyCharacter.h"
|
||
|
|
||
|
AEnemyCharacter::AEnemyCharacter(const FObjectInitializer& ObjectInitializer)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void AEnemyCharacter::BeginPlay()
|
||
|
{
|
||
|
Super::BeginPlay();
|
||
|
}
|
||
|
|
||
|
void AEnemyCharacter::Tick(float DeltaTime)
|
||
|
{
|
||
|
Super::Tick(DeltaTime);
|
||
|
}
|