14 lines
287 B
C++
14 lines
287 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
|
|
#include "ResComHUD.h"
|
|
|
|
void AResComHUD::SetUIStateManager(AResComUIStateManager* manager)
|
|
{
|
|
UIStateManager = manager;
|
|
}
|
|
|
|
AResComUIStateManager* AResComHUD::GetUIManager() const
|
|
{
|
|
return UIStateManager;
|
|
} |