mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
24 lines
401 B
C
24 lines
401 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef ANORMS_H
|
|||
|
#define ANORMS_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
#include "vector.h"
|
|||
|
|
|||
|
|
|||
|
#define NUMVERTEXNORMALS 162
|
|||
|
|
|||
|
|
|||
|
extern Vector g_anorms[NUMVERTEXNORMALS];
|
|||
|
|
|||
|
|
|||
|
#endif // ANORMS_H
|