mirror of
https://github.com/jmarshall23/Hellfire.git
synced 2026-08-12 07:50:53 +02:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*-----------------------------------------------------------------------**
|
|
** Diablo
|
|
**
|
|
** Constants and Variables
|
|
**
|
|
** (C)1995 Condor, Inc. All rights reserved.
|
|
**-----------------------------------------------------------------------**
|
|
** $Header: /Diablo/SCRLASM.H 2 1/23/97 12:21p Jmorin $
|
|
**-----------------------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------------------**
|
|
** Defines
|
|
**-----------------------------------------------------------------------*/
|
|
|
|
//*************************************************************************
|
|
// Flags for partial transparency (bottoms of trans walls, etc.)
|
|
//*************************************************************************
|
|
enum {
|
|
PART_TRANS_NONE,
|
|
PART_TRANS_LEFT,
|
|
PART_TRANS_RIGHT,
|
|
};
|
|
|
|
|
|
|
|
#define NBUFFW32 800
|
|
#define NBUFFW64 832
|
|
|
|
/*-----------------------------------------------------------------------**
|
|
** Externs
|
|
**-----------------------------------------------------------------------*/
|
|
|
|
/*-----------------------------------------------------------------------**
|
|
** Prototypes
|
|
**-----------------------------------------------------------------------*/
|
|
|
|
extern "C" void _fastcall DrawMTileClipTop(BYTE *pDecodeTo);
|
|
extern "C" void _fastcall DrawMTileClipBottom(BYTE *pDecodeTo);
|