Files
Hellfire/AUTOMAP.H
T
Justin Marshall 101266ab72 Initial commit.
2026-04-27 10:35:40 -07:00

42 lines
1.3 KiB
C++

/*-----------------------------------------------------------------------**
** Diablo
**
** Constants and Variables
**
** (C)1995 Condor, Inc. All rights reserved.
**-----------------------------------------------------------------------**
** $Header: /Diablo/AUTOMAP.H 1 1/22/97 2:06p Dgartner $
**-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------**
** Defines
**-----------------------------------------------------------------------*/
#define AUTOMAPX 40
#define AUTOMAPY 40
/*-----------------------------------------------------------------------**
** Externs
**-----------------------------------------------------------------------*/
extern BOOL automapflag;
extern BYTE automapview[AUTOMAPX][AUTOMAPY];
extern int automapscale;
/*-----------------------------------------------------------------------**
** Prototypes
**-----------------------------------------------------------------------*/
void InitAutomapOnce();
void InitAutomap();
void DrawAutomap();
void SetAutomapView(int, int);
void SyncAutomap();
void StartAutomap();
void AutomapUp();
void AutomapDown();
void AutomapLeft();
void AutomapRight();
void AutomapZoomIn();
void AutomapZoomOut();