LeviLamina
Loading...
Searching...
No Matches
InputFormat.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Puv {
6
7enum class InputFormat : uchar {
8 Binary = 0,
9 JsonString = 1,
10 JsonCpp = 2,
11 JsonRapid = 3,
12 DynamicValue = 4,
13};
14
15}