// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "AIController.h" #include "BaseAIController.generated.h" /** * */ UCLASS() class PRESIDENTSBRIGADE_API ABaseAIController : public AAIController { GENERATED_BODY() public: virtual void Tick(float delta) override; protected: virtual void BeginPlay() override; private: bool move_to_location = false; };