Create AIAttackTokenManager Object
This commit is contained in:
parent
95481dba52
commit
57abe9a3a2
|
@ -12,7 +12,8 @@
|
||||||
"Engine",
|
"Engine",
|
||||||
"FieldSystemEngine",
|
"FieldSystemEngine",
|
||||||
"AIModule",
|
"AIModule",
|
||||||
"UMG"
|
"UMG",
|
||||||
|
"CoreUObject"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||||||
|
|
||||||
|
|
||||||
|
#include "NakatomiAIAttackTokenManager.h"
|
||||||
|
|
|
@ -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()
|
||||||
|
|
||||||
|
};
|
Loading…
Reference in New Issue