Skip to content
Snippets Groups Projects
Select Git revision
  • c999fe7d2c6a1f871b86ebe0575686f87c04762e
  • main default protected
  • ravaflow3g
  • docs
  • v0.1.2
  • v0.1.1
  • v0.1.0
7 results

test_clear_temp_files.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();
    };