15 lines
304 B
C++
Executable file
15 lines
304 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "AttackingPointInterface.generated.h"
|
|
|
|
UINTERFACE(MinimalAPI)
|
|
class UAttackingPointInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IAttackingPointInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|