14 lines
339 B
C++
Executable file
14 lines
339 B
C++
Executable file
#include "CoolDownProgressWidget.h"
|
|
|
|
void UCoolDownProgressWidget::UpdateProgress(float Progress) {
|
|
}
|
|
|
|
|
|
|
|
void UCoolDownProgressWidget::Init(UObject* InCoolDownObject, const FCoolDownProgressStyle& InStyle) {
|
|
}
|
|
|
|
UCoolDownProgressWidget::UCoolDownProgressWidget() : UUserWidget(FObjectInitializer::Get()) {
|
|
this->bIsFinished = false;
|
|
}
|
|
|