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

25 lines
471 B
C++
Executable file

#include "SpaceRigHUD.h"
void ASpaceRigHUD::SetNotificationQueueActive(bool Inactive) {
}
void ASpaceRigHUD::QueueWindowClass(TSoftClassPtr<UWindowWidget> InWindowType) {
}
void ASpaceRigHUD::QueueNotificationObject(UObject* InObject) {
}
bool ASpaceRigHUD::IsNotificationQueueEmpty() const {
return false;
}
UObject* ASpaceRigHUD::DequeueNotificationObject() {
return NULL;
}
ASpaceRigHUD::ASpaceRigHUD() {
this->bNotificationQueueActive = false;
}