


Для тех у кого есть свой клиент ну или просто играете с друзьями,чтобы не мудрить с отладкой.
С++
#ifndef _DLL_H_
#ifndef PM_DEBUG_H
#define _DLL_H_
#define PM_DEBUG_H
#pragma once
#ifndef PM_DEBUG_H
#define _DLL_H_
#define PM_DEBUG_H
#pragma once
#if BUILDING_DLL
# define DLLIMPORT __declspec (dllexport)
#else /* Not BUILDING_DLL */
# define DLLIMPORT __declspec (dllimport)
#endif /* Not BUILDING_DLL */
class DLLIMPORT DllClass
{
public:
DllClass();
virtual ~DllClass(void);
private:
};
#endif /* _DLL_H_ */
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