DDraceNetwork Docs
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
36#endif
EGameTileOp
Definition: enums.h:20
constexpr const char * g_apGametileOpNames[]
Definition: enums.h:4