USTRUCT(Atomic, BlueprintType)
struct Potion
{
GENERATED_USTRUCT_BODY()
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite)
int recoveryHp;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float cooltime;
UPROPERTY(EditAnywhere, BlueprintReadWrite)
string potionName;
};