mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
29 lines
605 B
C
29 lines
605 B
C
//===== Copyright (c) 1996-2005, Valve Corporation, All rights reserved. ======//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $Workfile: $
|
|
// $Date: $
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
// $Log: $
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
#if !defined( INETMSGHANDLER_H )
|
|
#define INETMSGHANDLER_H
|
|
|
|
struct IConnectionlessPacketHandler
|
|
{
|
|
void* __vftable /*VFT*/;
|
|
};
|
|
|
|
struct INetMessageHandler
|
|
{
|
|
void* __vftable /*VFT*/;
|
|
};
|
|
|
|
struct IServerMessageHandler : INetMessageHandler
|
|
{};
|
|
|
|
#endif // INETMSGHANDLER_H
|