23 lines
378 B
C
23 lines
378 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
|