mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
20 lines
436 B
C
20 lines
436 B
C
|
//========= Copyright <20> 1996-2005, Valve Corporation, All rights reserved. ============//
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
//=============================================================================//
|
|||
|
|
|||
|
#ifndef MAP_H
|
|||
|
#define MAP_H
|
|||
|
#ifdef _WIN32
|
|||
|
#pragma once
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
// All the brush sides referenced by info_no_dynamic_shadow entities.
|
|||
|
extern CUtlVector<int> g_NoDynamicShadowSides;
|
|||
|
extern int g_ClipTexinfo;
|
|||
|
|
|||
|
|
|||
|
#endif // MAP_H
|