12 lines
243 B
C++
Executable file
12 lines
243 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FSDAIController.h"
|
|
#include "EnemyAIController.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class AEnemyAIController : public AFSDAIController {
|
|
GENERATED_BODY()
|
|
public:
|
|
AEnemyAIController();
|
|
};
|
|
|