blob: ae25fbaa8f12f4cb6983791bae6d7f50c67d19f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: interface class between viewport msg funcs and "c" based client dll
//
// $NoKeywords: $
//=============================================================================//
#if !defined( IDODVIEWPORTMSGS_H )
#define IDODVIEWPORTMSGS_H
#ifdef _WIN32
#pragma once
#endif
//#include "vgui/IViewPortMsgs.h"
class IDODViewPortMsgs /*: public IViewPortMsgs*/
{
public:
virtual int MsgFunc_ScoreInfo( const char *pszName, int iSize, void *pbuf ) = 0;
};
extern IDODViewPortMsgs *gDODViewPortMsgs;
#endif // IDODVIEWPORTMSGS_H
|