LeviLamina
Loading...
Searching...
No Matches
Init.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace bgfx {
6
7struct Init {
8public:
9 // Init inner types declare
10 // clang-format off
11 struct Limits;
12 // clang-format on
13
14 // Init inner types define
15 enum class DebugConfig : int {};
16
17 struct Limits {};
18};
19
20} // namespace bgfx
Definition Init.h:17
Definition Init.h:7