Files
hl2_src-leak-2017/src/game/shared/portal/portal_gcmessages.h
BotoX 60f625f414 import hl2_src from full.7z
source: magnet:?xt=urn:btih:21DDA6847DDE983F2F8063739249D2D1D09A5DDA
2020-12-25 16:26:23 +01:00

29 lines
803 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: This file defines all of our over-the-wire net protocols for the
// Game Coordinator for Portal. Note that we never use types
// with undefined length (like int). Always use an explicit type
// (like int32).
//
//=============================================================================
#ifndef PORTAL_GCMESSAGES_H
#define PORTAL_GCMESSAGES_H
#ifdef _WIN32
#pragma once
#endif
enum EGCMsg
{
k_EMsgGCPortalBase = 5000,
k_EMsgGCReportWarKill = k_EMsgGCPortalBase + 1, //War kill tracking. No longer in use
// Development only messages
k_EMsgGCPortalDEVBase = 6000,
k_EMsgGCDev_GrantWarKill = k_EMsgGCPortalDEVBase + 1, //War kill tracking. No longer in use
};
#endif