15 lines
287 B
C++
Executable file
15 lines
287 B
C++
Executable file
#include "ShowroomManager.h"
|
|
|
|
UShowroomController* UShowroomManager::GetController() {
|
|
return NULL;
|
|
}
|
|
|
|
void UShowroomManager::ClearShowroom() {
|
|
}
|
|
|
|
UShowroomManager::UShowroomManager() {
|
|
this->CurrentStage = NULL;
|
|
this->StageInstance = NULL;
|
|
this->RenderTarget = NULL;
|
|
}
|
|
|