Files
2026-04-22 15:51:07 +02:00

24 lines
614 B
C++

#include "BacchusButton.h"
void UBacchusButton::SetButtonSprite_Implementation(UPaperSprite* NewSprite) {
}
void UBacchusButton::SetButtonSize_Implementation(float NewButtonSize) {
}
void UBacchusButton::SetButtonDisplayScale_Implementation(float NewDisplayScale) {
}
void UBacchusButton::OnClicked_Implementation() {
}
UBacchusButton::UBacchusButton() {
this->ClickMethod = EButtonClickMethod::DownAndUp;
this->TouchMethod = EButtonTouchMethod::DownAndUp;
this->ButtonSize = 200.00f;
this->ButtonDisplayScale = 1.00f;
this->ShowRadialProgress = false;
this->InternalButton = NULL;
}