LeviLamina
Loading...
Searching...
No Matches
NameResolutionScope.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ui {
6
7enum class NameResolutionScope : int {
8 Global = 0,
9 Local = 1,
10 Sibling = 2,
11 Ancestor = 3,
12};
13
14}