mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-03 16:13:22 +08:00
24 lines
401 B
C
24 lines
401 B
C
//========= Copyright © 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
|