Files
source/Editor/Editor Modes.h
BeatAroundTheBuscherandGitHub ed00830202 Fixes Upper/Lower Casing for include paths (#487)
* 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.
2025-08-16 22:01:12 -03:00

18 lines
434 B
C

#include "builddefines.h"
#ifdef JA2EDITOR
#ifndef __EDITOR_MODES_H
#define __EDITOR_MODES_H
void SetEditorItemsTaskbarMode( UINT16 usNewMode );
void SetEditorBuildingTaskbarMode( UINT16 usNewMode );
void SetEditorTerrainTaskbarMode( UINT16 usNewMode );
void SetEditorMapInfoTaskbarMode( UINT16 usNewMode );
void SetEditorSmoothingMode( UINT8 ubNewMode );
void ShowExitGrids();
void HideExitGrids();
#endif
#endif