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