Graphics v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
UI.h
1// Copyright 2022 ShenMian
2// License(Apache-2.0)
3
4#pragma once
5
6class Window;
7
8class UI
9{
10public:
11 static void begin_frame();
12 static void end_frame();
13
14 static void init(const Window& win);
15 static void deinit();
16};
Definition: UI.h:9
窗体.
Definition: Window.h:24