mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
393 B
C++
17 lines
393 B
C++
#include "WaxActiveTokenEventWidgetBase.h"
|
|
|
|
int32 UWaxActiveTokenEventWidgetBase::GetWaxTokensMediumCrit() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 UWaxActiveTokenEventWidgetBase::GetWaxTokensHighCrit() const {
|
|
return 0;
|
|
}
|
|
|
|
UWaxActiveTokenEventWidgetBase::UWaxActiveTokenEventWidgetBase() {
|
|
this->WaxMutator = NULL;
|
|
this->WaxTokensForMediumCrit = 20;
|
|
this->WaxTokensForHighCrit = 45;
|
|
}
|
|
|