mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
22 lines
515 B
C++
22 lines
515 B
C++
#include "BacchusQuickbarComboSlot.h"
|
|
|
|
void UBacchusQuickbarComboSlot::SetSize_Implementation(float NewButtonSize) {
|
|
}
|
|
|
|
void UBacchusQuickbarComboSlot::SetQuickbarType(int32 NewType) {
|
|
}
|
|
|
|
void UBacchusQuickbarComboSlot::Refresh_Implementation() {
|
|
}
|
|
|
|
EFortQuickBars UBacchusQuickbarComboSlot::GetQuickbarType() const {
|
|
return EFortQuickBars::Primary;
|
|
}
|
|
|
|
UBacchusQuickbarComboSlot::UBacchusQuickbarComboSlot() {
|
|
this->SlotSize = 92.00f;
|
|
this->SlotType = EComboSlotType::Combo;
|
|
this->SlotIndex = 0;
|
|
}
|
|
|