25 lines
471 B
C++
Executable file
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;
|
|
}
|
|
|