17 lines
377 B
C++
Executable file
17 lines
377 B
C++
Executable file
#include "TemporaryBuff.h"
|
|
|
|
bool UTemporaryBuff::GetActivateOnlyWhenDrinking() const {
|
|
return false;
|
|
}
|
|
|
|
void UTemporaryBuff::DeActivateBuff(APlayerCharacter* Player) const {
|
|
}
|
|
|
|
void UTemporaryBuff::ActivateBuff(APlayerCharacter* Player) const {
|
|
}
|
|
|
|
UTemporaryBuff::UTemporaryBuff() {
|
|
this->ActivatesOnlyOnceWhenDrinking = false;
|
|
this->IsTodaysSpecialBuff = true;
|
|
}
|
|
|