LeviLamina
Loading...
Searching...
No Matches
PrimitiveType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::RenderHelper {
6
7enum class PrimitiveType : int {
8 Text = 0,
9 Box = 1,
10 Line = 2,
11 LineList = 3,
12 Disc = 4,
13 AxialSphere = 5,
14};
15
16}