mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
16 lines
316 B
C++
16 lines
316 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortAutoFireTargetInterface.generated.h"
|
|
|
|
UINTERFACE(MinimalAPI)
|
|
class UFortAutoFireTargetInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IFortAutoFireTargetInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|