Create AIAttackTokenManager Object

This commit is contained in:
Louis Hobbs 2023-08-17 21:47:21 +01:00
parent 95481dba52
commit 57abe9a3a2
3 changed files with 24 additions and 1 deletions

View File

@ -12,7 +12,8 @@
"Engine", "Engine",
"FieldSystemEngine", "FieldSystemEngine",
"AIModule", "AIModule",
"UMG" "UMG",
"CoreUObject"
] ]
} }
], ],

View File

@ -0,0 +1,5 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "NakatomiAIAttackTokenManager.h"

View File

@ -0,0 +1,17 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/NoExportTypes.h"
#include "NakatomiAIAttackTokenManager.generated.h"
/**
*
*/
UCLASS()
class NAKATOMI_API UNakatomiAIAttackTokenManager : public UObject
{
GENERATED_BODY()
};