mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
551 B
C++
19 lines
551 B
C++
#include "AthenaQuickBarNativeCell.h"
|
|
|
|
void UAthenaQuickBarNativeCell::SetItemToRepresent(UFortItem* InItemToRepresent) {
|
|
}
|
|
|
|
void UAthenaQuickBarNativeCell::SetIsSelected(bool bInSelected) {
|
|
}
|
|
|
|
void UAthenaQuickBarNativeCell::DesiredSizeOverride(float WidthOverride, float HeightOverride) {
|
|
}
|
|
|
|
UAthenaQuickBarNativeCell::UAthenaQuickBarNativeCell() {
|
|
this->SelectionAnimLength_Seconds = 0.01f;
|
|
this->ItemCount_OutlineAlphaFactor = 0.25f;
|
|
this->GadgetFuelChargeCount_OutlineAlphaFactor = 0.25f;
|
|
this->bShowSelectedWhenEmpty = false;
|
|
}
|
|
|