DDraceNetwork Docs
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
enums.h
Go to the documentation of this file.
1#ifndef GAME_EDITOR_ENUMS_H
2#define GAME_EDITOR_ENUMS_H
3
4constexpr const char *g_apGametileOpNames[] = {
5 "Air",
6 "Hookable",
7 "Death",
8 "Unhookable",
9 "Hookthrough",
10 "Freeze",
11 "Unfreeze",
12 "Deep Freeze",
13 "Deep Unfreeze",
14 "Blue Check-Tele",
15 "Red Check-Tele",
16 "Live Freeze",
17 "Live Unfreeze",
18};
19enum class EGameTileOp
20{
21 AIR,
23 DEATH,
26 FREEZE,
34};
35
36constexpr const char *g_apAutoMapReferenceNames[] = {
37 "Game Layer",
38 "Hookable",
39 "Death",
40 "Unhookable",
41 "Freeze",
42 "Unfreeze",
43 "Deep Freeze",
44 "Deep Unfreeze",
45 "Live Freeze",
46 "Live Unfreeze",
47};
48
49#endif
constexpr const char * g_apAutoMapReferenceNames[]
Definition: enums.h:36
EGameTileOp
Definition: enums.h:20
constexpr const char * g_apGametileOpNames[]
Definition: enums.h:4