dxx-rebirth/d1x-rebirth/main/custom.h

30 lines
715 B
C
Raw Normal View History

2014-06-01 17:55:23 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
2006-03-20 16:43:15 +00:00
#ifndef _CUSTOM_H
#define _CUSTOM_H
2013-10-26 03:40:50 +00:00
#include "pstypes.h"
#include "piggy.h"
#ifdef __cplusplus
2006-03-20 16:43:15 +00:00
/* from piggy.c */
#define DBM_FLAG_LARGE 128 // Flags added onto the flags struct in b
#define DBM_FLAG_ABM 64
extern int GameBitmapOffset[MAX_BITMAP_FILES];
extern ubyte GameBitmapFlags[MAX_BITMAP_FILES];
extern ubyte * Piggy_bitmap_cache_data;
2014-07-23 02:27:22 +00:00
void load_custom_data(const d_fname &level_file);
2006-03-20 16:43:15 +00:00
void custom_close();
#endif
2006-03-20 16:43:15 +00:00
#endif