mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 12:31:51 +00:00
17 lines
No EOL
495 B
C
17 lines
No EOL
495 B
C
//========= Copyright © 1996-2002, Valve LLC, All rights reserved. ============
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================
|
|
|
|
#ifndef PM_DEBUG_H
|
|
#define PM_DEBUG_H
|
|
#pragma once
|
|
|
|
void PM_ViewEntity( void );
|
|
void PM_DrawBBox(vec3_t mins, vec3_t maxs, vec3_t origin, int pcolor, float life);
|
|
void PM_ParticleLine(vec3_t start, vec3_t end, int pcolor, float life, float vert);
|
|
void PM_ShowClipBox( void );
|
|
|
|
#endif // PMOVEDBG_H
|