mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 12:31:51 +00:00
20 lines
No EOL
395 B
C
20 lines
No EOL
395 B
C
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#if !defined( DEMOH )
|
|
#define DEMOH
|
|
#pragma once
|
|
|
|
// Types of demo messages we can write/parse
|
|
enum
|
|
{
|
|
TYPE_USER = 0,
|
|
};
|
|
|
|
void Demo_WriteBuffer( int type, int size, unsigned char *buffer );
|
|
|
|
#endif |