mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
430 B
C
18 lines
430 B
C
|
//============ Copyright Valve Corporation, All rights reserved. ==============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
#if !defined( PROTO_VERSION_H )
|
||
|
#define PROTO_VERSION_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
// The current network protocol version. Changing this makes clients and servers incompatible
|
||
|
#define PROTOCOL_VERSION 529
|
||
|
|
||
|
#endif
|