mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +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;
|
|
}
|
|
|