Space Plunder
Loading...
Searching...
No Matches
AIData.h
Go to the documentation of this file.
1// Fill out your copyright notice in the Description page of Project Settings.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "Engine/DataTable.h"
7#include "UObject/Interface.h"
8#include "AIData.generated.h"
9
10// This class does not need to be modified.
11UINTERFACE(MinimalAPI)
12class UAIData : public UInterface
13{
14 GENERATED_BODY()
15};
16
20class AITOOLKIT_API IAIData
21{
22 GENERATED_BODY()
23
24public:
25
26 virtual UDataTable* GetFactionRelationshipDataTable() = 0;
27
28};
Definition AIData.h:21
virtual UDataTable * GetFactionRelationshipDataTable()=0
Definition AIData.h:13