69 lines
840 B
C
69 lines
840 B
C
#ifndef DATATYPES_H
|
|
#define DATATYPES_H
|
|
|
|
#include <QString>
|
|
|
|
struct server_type
|
|
{
|
|
QString name;
|
|
QString desc;
|
|
QString ip;
|
|
int port;
|
|
};
|
|
|
|
struct emote_type
|
|
{
|
|
QString comment;
|
|
QString preanim;
|
|
QString anim;
|
|
int mod;
|
|
QString sfx_name;
|
|
int sfx_delay;
|
|
int sfx_duration;
|
|
};
|
|
|
|
struct char_type
|
|
{
|
|
QString name;
|
|
QString description;
|
|
};
|
|
|
|
struct evi_type
|
|
{
|
|
QString name;
|
|
QString description;
|
|
};
|
|
|
|
struct chatmessage_type
|
|
{
|
|
QString message;
|
|
QString character;
|
|
QString side;
|
|
QString sfx_name;
|
|
QString pre_emote;
|
|
QString emote;
|
|
int emote_modifier;
|
|
int objection_modifier;
|
|
int realization;
|
|
int text_color;
|
|
int evidence;
|
|
int cid;
|
|
int sfx_delay;
|
|
int flip;
|
|
};
|
|
|
|
struct area_type
|
|
{
|
|
QString name;
|
|
QString background;
|
|
bool passworded;
|
|
};
|
|
|
|
struct pos_type
|
|
{
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
#endif // DATATYPES_H
|