15 lines
285 B
C++
Executable file
15 lines
285 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FootStepNotifyTarget.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UFootStepNotifyTarget : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IFootStepNotifyTarget : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|