9 lines
275 B
C++
9 lines
275 B
C++
#include "GameLayoutWidget.h"
|
|
#include "Widgets/CommonActivatableWidgetContainer.h"
|
|
#include "Inventory/InventoryScreenWidget.h"
|
|
|
|
void UGameLayoutWidget::OpenInventory()
|
|
{
|
|
InventoryScreenWidget = WidgetStack->AddWidget<UInventoryScreenWidget>(InventoryScreenWidgetClass);
|
|
}
|