Change some class naming conventions
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
// This class does not need to be modified.
|
||||
UINTERFACE(Blueprintable)
|
||||
class UTangibleInterface : public UInterface
|
||||
class UlxTangibleInterface : public UInterface
|
||||
{
|
||||
GENERATED_BODY()
|
||||
};
|
||||
@@ -16,15 +16,15 @@ class UTangibleInterface : public UInterface
|
||||
/**
|
||||
*
|
||||
*/
|
||||
class INTEGRATION_API ITangibleInterface
|
||||
class INTEGRATION_API IlxTangibleInterface
|
||||
{
|
||||
GENERATED_BODY()
|
||||
|
||||
// Add interface functions to this class. This is the class that will be inherited to implement this interface.
|
||||
public:
|
||||
UFUNCTION(BlueprintImplementableEvent, Category = "Tangible Functionality")
|
||||
bool AbortAnimation(int64 hash);
|
||||
bool StartAnimation(int64 hash, int StrLen);
|
||||
|
||||
UFUNCTION(BlueprintImplementableEvent, Category = "Tangible Functionality")
|
||||
bool StartAnimation(int64 hash, int StrLen);
|
||||
bool AbortAnimation(int64 hash);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user