Skip to content
Snippets Groups Projects
Select Git revision
  • fed9df82c4ea2ffef914a115ea1134d899021d42
  • main default protected
  • Version-0.5.4
  • Version-0.5.3
  • Version-0.5.2
  • Version-0.5.1
  • Version-0.3.1
  • Version-0.2.2
  • Version-0.2.1
  • Version-0.2.0
  • Version-0.1.1
  • Version-0.1.0
  • Version0.0.1
13 results

shared.py

Blame
  • 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();
    };