mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +00:00
19 lines
422 B
C++
19 lines
422 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "FortHUDObjectiveSizeInterface.generated.h"
|
|
|
|
UINTERFACE(Blueprintable)
|
|
class UFortHUDObjectiveSizeInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IFortHUDObjectiveSizeInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
|
|
float GetHeightEstimate() const;
|
|
|
|
};
|
|
|