2023-09-12 15:11:47 -04:00
|
|
|
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
|
#include "UObject/Interface.h"
|
|
|
|
|
#include "TangibleInterface.generated.h"
|
|
|
|
|
|
|
|
|
|
// This class does not need to be modified.
|
2023-09-15 00:01:41 -04:00
|
|
|
UINTERFACE(Blueprintable)
|
2023-09-12 15:11:47 -04:00
|
|
|
class UTangibleInterface : public UInterface
|
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class INTEGRATION_API ITangibleInterface
|
|
|
|
|
{
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
|
|
|
|
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
|
|
|
|
|
public:
|
2023-09-15 01:08:19 -04:00
|
|
|
UFUNCTION(BlueprintImplementableEvent, Category = "Tangible Functionality")
|
|
|
|
|
bool AbortAnimation(int64 hash);
|
|
|
|
|
|
|
|
|
|
UFUNCTION(BlueprintImplementableEvent, Category = "Tangible Functionality")
|
|
|
|
|
bool StartAnimation(int64 hash, int StrLen);
|
2023-09-12 15:11:47 -04:00
|
|
|
};
|