Change some class naming conventions

This commit is contained in:
2023-09-15 13:28:18 -04:00
parent 40881ec284
commit cd3c82f2c4
20 changed files with 160 additions and 157 deletions

View File

@@ -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);
};