added chat message enumerator

This commit is contained in:
David Skoland 2017-01-30 15:38:45 +01:00
parent 9d48599a90
commit ba8b0e59d8
2 changed files with 20 additions and 0 deletions

View File

@ -4,6 +4,7 @@
#include "lobby.h" #include "lobby.h"
#include "hardware_functions.h" #include "hardware_functions.h"
#include "file_functions.h" #include "file_functions.h"
#include "datatypes.h"
#include <QDebug> #include <QDebug>
#include <QScrollBar> #include <QScrollBar>

View File

@ -75,4 +75,23 @@ struct pos_size_type
int height = 0; int height = 0;
}; };
enum CHAT_MESSAGE
{
CHAT = 0,
PRE_EMOTE,
CHAR_NAME,
EMOTE,
MESSAGE,
SIDE,
SFX_NAME,
EMOTE_MOD,
CHAR_ID,
SFX_DELAY,
OBJECTION_MOD,
EVIDENCE_ID,
FLIP,
REALIZATION,
TEXT_COLOR
};
#endif // DATATYPES_H #endif // DATATYPES_H