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.
44 lines
761 B
C
44 lines
761 B
C
#include "builddefines.h"
|
|
|
|
#ifdef JA2EDITOR
|
|
#ifndef __EDITORMAPINFO_H
|
|
#define __EDITORMAPINFO_H
|
|
|
|
extern INT32 iNewMapWorldRows;
|
|
extern INT32 iNewMapWorldCols;
|
|
|
|
void SetupTextInputForOptions();
|
|
void UpdateOptions();
|
|
void ExtractAndUpdateOptions();
|
|
void SetupTextInputForMapInfo();
|
|
void UpdateMapInfo();
|
|
void ExtractAndUpdateMapInfo();
|
|
BOOLEAN ApplyNewExitGridValuesToTextFields();
|
|
void UpdateMapInfoFields();
|
|
|
|
extern SGPPaletteEntry gEditorLightColor;
|
|
|
|
extern BOOLEAN gfEditorForceShadeTableRebuild;
|
|
|
|
void LocateNextExitGrid();
|
|
|
|
enum
|
|
{
|
|
PRIMETIME_LIGHT,
|
|
NIGHTTIME_LIGHT,
|
|
ALWAYSON_LIGHT,
|
|
ANY_LIGHT//dnl ch86 210214
|
|
};
|
|
|
|
void ChangeLightDefault( INT8 bLightType );
|
|
extern INT8 gbDefaultLightType;
|
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|