You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
517 B
26 lines
517 B
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef CLIPCODE_H
|
|
#define CLIPCODE_H
|
|
#pragma once
|
|
|
|
|
|
#include "hammer_mathlib.h"
|
|
|
|
|
|
class CMapFace;
|
|
class IEditorTexture;
|
|
|
|
|
|
#define VERTEXSIZE 5
|
|
#define MAX_CLIPVERT 64
|
|
|
|
|
|
int CreateClippedPoly(CMapFace *pFace, IEditorTexture *pDecalTex, Vector& org, vec5_t *pOutPoints, int nOutSize);
|
|
|
|
#endif // CLIPCODE_H
|