mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
21 lines
437 B
C++
21 lines
437 B
C++
#include "FortItemCooldownWidget.h"
|
|
|
|
void UFortItemCooldownWidget::TryStartUpdateCooldown_BP() {
|
|
}
|
|
|
|
void UFortItemCooldownWidget::SetItem(const UFortWorldItem* InWorldItem) {
|
|
}
|
|
|
|
void UFortItemCooldownWidget::OnWorldItemDestroyed() {
|
|
}
|
|
|
|
|
|
|
|
UFortItemCooldownWidget::UFortItemCooldownWidget() {
|
|
this->CooldownText = NULL;
|
|
this->CooldownImage = NULL;
|
|
this->CooldownChargingImage = NULL;
|
|
this->CooldownPercentageMID = NULL;
|
|
}
|
|
|