23 lines
491 B
C++
23 lines
491 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Enemy/LMEnemy.h"
|
|
#include "LMDistantEnemy.generated.h"
|
|
|
|
UCLASS()
|
|
class LEGUMEMIX_API ALMDistantEnemy : public ALMEnemy
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
ALMDistantEnemy();
|
|
virtual void Tick(float DeltaTime) override;
|
|
virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override;
|
|
|
|
protected:
|
|
virtual void BeginPlay() override;
|
|
|
|
};
|