mirror of
https://github.com/jmarshall23/Hellfire.git
synced 2026-08-12 07:50:53 +02:00
42 lines
1.3 KiB
C++
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();
|