Something went wrong on our end
Select Git revision
-
Adrian Schmitz authored
Signed-off-by:
Adrian Schmitz <a.schmitz@itc.rwth-aachen.de>
Adrian Schmitz authoredSigned-off-by:
Adrian Schmitz <a.schmitz@itc.rwth-aachen.de>
IntenSelectableWidget.h 562 B
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "UObject/Object.h"
#include "UObject/Interface.h"
#include "IntenSelectableWidget.generated.h"
UINTERFACE(BlueprintType)
class UIntenSelectableWidget : public UInterface
{
GENERATED_UINTERFACE_BODY()
};
class IIntenSelectableWidget
{
GENERATED_IINTERFACE_BODY()
public:
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
FVector GetCoordinates();
UFUNCTION(BlueprintNativeEvent, BlueprintCallable)
FVector2D GetUISize();
};