blob: 8bee72a64d97f50836448131b7d772cf2c0431ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include "cru/ui/Base.h"
namespace cru::platform {
namespace graphics {
struct IGraphicsFactory;
}
namespace native {
struct IUiApplication;
} // namespace native
} // namespace cru::platform
namespace cru::ui {
cru::platform::graphics::IGraphicsFactory* GetGraphicsFactory();
cru::platform::gui::IUiApplication* GetUiApplication();
} // namespace cru::ui
|