DRG-Femboy-Voice/Source/FSD/Private/CrosshairAggregator.cpp
2025-04-15 12:39:31 -07:00

20 lines
524 B
C++
Executable file

#include "CrosshairAggregator.h"
void UCrosshairAggregator::SetCrosshair(UUserWidget* Widget) {
}
UUserWidget* UCrosshairAggregator::GetOrCreateCrosshair() {
return NULL;
}
UCustomAmmoCountWidget* UCrosshairAggregator::GetCustomAmmoCounterWidget(UObject* WorldContext, APlayerController* InOwner) {
return NULL;
}
UCrosshairAggregator::UCrosshairAggregator() {
this->CrosshairWidget = NULL;
this->CrossHairType = NULL;
this->CustomAmmoCounterWidget = NULL;
this->CustomAmmoCounterType = NULL;
}