2
0
mirror of https://github.com/FWGS/hlsdk-xash3d synced 2024-11-11 20:59:28 +01:00
hlsdk-xash3d/cl_dll/demo.h

20 lines
396 B
C

//========= Copyright (c) 1996-2002, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#pragma once
#if !defined( DEMOH )
#define DEMOH
// Types of demo messages we can write/parse
enum
{
TYPE_USER = 0
};
void Demo_WriteBuffer( int type, int size, unsigned char *buffer );
#endif