mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
27 lines
504 B
C++
27 lines
504 B
C++
//========= Copyright 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
|