17 lines
483 B
C
17 lines
483 B
C
//========= Copyright c 1996-2014, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef CSGO_LIMITS_H
|
|
#define CSGO_LIMITS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#define MAX_CLAN_TAG_LENGTH 16 // max for new tags is actually 12, this allows some backward compat.
|
|
// this must be shared across a lot of projects: client, server, matchmaking, engine
|
|
|
|
#endif // CSGO_LIMITS_H
|