mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
29 lines
630 B
C
29 lines
630 B
C
#include "builddefines.h"
|
|
|
|
#ifdef JA2EDITOR
|
|
#ifndef __NEWSMOOTH_H
|
|
#define __NEWSMOOTH_H
|
|
|
|
void AddBuildingSectionToWorld( SGPRect *pSelectRegion );
|
|
void RemoveBuildingSectionFromWorld( SGPRect *pSelectRegion );
|
|
|
|
void AddCaveSectionToWorld( SGPRect *pSelectRegion );
|
|
void RemoveCaveSectionFromWorld( SGPRect *pSelectRegion );
|
|
|
|
void EraseBuilding( INT32 iMapIndex );
|
|
void RebuildRoof( INT32 iMapIndex, UINT16 usRoofType );
|
|
void RebuildRoofUsingFloorInfo( INT32 iMapIndex, UINT16 usRoofType );
|
|
|
|
void AddCave( INT32 iMapIndex, UINT16 usIndex );
|
|
|
|
void AnalyseCaveMapForStructureInfo();
|
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|