2011-03-26 16:44:34 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
|
|
#ifndef GAME_VOTING_H
|
|
|
|
#define GAME_VOTING_H
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
VOTE_DESC_LENGTH=64,
|
|
|
|
VOTE_CMD_LENGTH=512,
|
|
|
|
VOTE_REASON_LENGTH=16,
|
2011-03-26 21:06:29 +00:00
|
|
|
|
2013-08-01 20:27:19 +00:00
|
|
|
MAX_VOTE_OPTIONS=8192,
|
2011-03-26 16:44:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CVoteOptionClient
|
|
|
|
{
|
|
|
|
CVoteOptionClient *m_pNext;
|
|
|
|
CVoteOptionClient *m_pPrev;
|
|
|
|
char m_aDescription[VOTE_DESC_LENGTH];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CVoteOptionServer
|
|
|
|
{
|
|
|
|
CVoteOptionServer *m_pNext;
|
|
|
|
CVoteOptionServer *m_pPrev;
|
|
|
|
char m_aDescription[VOTE_DESC_LENGTH];
|
|
|
|
char m_aCommand[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|