DRG-Femboy-Voice/Source/FSD/Public/Upgradable.h
2025-04-15 12:39:31 -07:00

20 lines
407 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "UObject/Interface.h"
#include "Upgradable.generated.h"
class UItemUpgrade;
UINTERFACE(Blueprintable)
class UUpgradable : public UInterface {
GENERATED_BODY()
};
class IUpgradable : public IInterface {
GENERATED_BODY()
public:
UFUNCTION(BlueprintCallable, BlueprintNativeEvent)
void Upgraded(const TArray<UItemUpgrade*>& upgrades);
};