blob: a4d4dba9f508a94dff572eb5ad6e93cc85646d22 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef SURFINFO_H
#define SURFINFO_H
#ifdef _WIN32
#pragma once
#endif
#include "mathlib/vplane.h"
//#include "mathlib/vector.h"
#define MAX_SURFINFO_VERTS 16
class SurfInfo
{
public:
// Shape of the surface.
Vector m_Verts[ MAX_SURFINFO_VERTS ];
unsigned long m_nVerts;
// Plane of the surface.
VPlane m_Plane;
// For engine use only..
void *m_pEngineData;
};
#endif // SURFINFO_H
|