mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 20:16:10 +08:00
20 lines
437 B
C
20 lines
437 B
C
![]() |
//========= Copyright © 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
|