mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-23 14:46:53 +00:00
19 lines
366 B
C
19 lines
366 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef DETAIL_H
|
||
|
#define DETAIL_H
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
face_t *MergeDetailTree( tree_t *worldtree, int brush_start, int brush_end );
|
||
|
|
||
|
|
||
|
#endif // DETAIL_H
|