mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
543 B
C++
23 lines
543 B
C++
#include "FortConsumableItemDefinition.h"
|
|
|
|
UAnimMontage* UFortConsumableItemDefinition::GetUseAnimation() const {
|
|
return NULL;
|
|
}
|
|
|
|
float UFortConsumableItemDefinition::GetHealthRestored(int32 ItemLevel) const {
|
|
return 0.0f;
|
|
}
|
|
|
|
float UFortConsumableItemDefinition::GetAnimPlayRate() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
void UFortConsumableItemDefinition::ConsumeItem(const FGameplayEventData& EventData) {
|
|
}
|
|
|
|
UFortConsumableItemDefinition::UFortConsumableItemDefinition() {
|
|
this->UseTime = 3.00f;
|
|
this->bRequiresMissingHealth = true;
|
|
}
|
|
|