LeviLamina
Loading...
Searching...
No Matches
ScriptCustomCommandParamType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace ScriptModuleMinecraft {
6
7enum class ScriptCustomCommandParamType : int {
8 Boolean = 0,
9 Integer = 1,
10 Float = 2,
11 String = 3,
12 EntitySelector = 4,
13 PlayerSelector = 5,
14 Location = 6,
15 BlockType = 7,
16 ItemType = 8,
17 Enum = 9,
18};
19
20}