mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-23 01:59:43 +08:00
8a6d1c6cd2
* Fix compilation for windows, setup ambuild * Add built tier1 and mathlib for win64 * Ensure compilation is working on windows and linux * Add -fPIC * Add compiled libs, with optimisation enabled * Added windows lib * Fix hl2sdk for windows * Longs are the devil * Fix up threadtools functions * Add updated libs * Rework lib naming, and package script * Update lib directory according to new packaging --------- Co-authored-by: Kenzzer <kenzzer@users.noreply.github.com>
32 lines
636 B
C++
32 lines
636 B
C++
//========= Copyright © 1996-2005, 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 ];
|
|
uint32_t m_nVerts;
|
|
|
|
// Plane of the surface.
|
|
VPlane m_Plane;
|
|
|
|
// For engine use only..
|
|
void *m_pEngineData;
|
|
};
|
|
|
|
#endif // SURFINFO_H
|