mirror of
https://github.com/diasurgical/devilution.git
synced 2026-06-20 05:46:12 +00:00
- Add file documentation to about 1/4 of the files in Source - Copy over a lot of the documentation from the sanctuary/notes repo - Standardise all the existing documentation - Create a configuration for Doxygen - Add more documentation (engine.cpp is now fully documented)
28 lines
505 B
C
28 lines
505 B
C
/**
|
|
* @file doom.h
|
|
*
|
|
* Interface of the map of the stars quest.
|
|
*/
|
|
#ifndef __DOOM_H__
|
|
#define __DOOM_H__
|
|
|
|
extern int doom_quest_time;
|
|
extern int doom_stars_drawn;
|
|
extern BYTE *pDoomCel;
|
|
extern BOOL doomflag;
|
|
extern int DoomQuestState;
|
|
|
|
/*
|
|
void doom_reset_state();
|
|
void doom_play_movie();
|
|
*/
|
|
int doom_get_frame_from_time();
|
|
void doom_alloc_cel();
|
|
void doom_cleanup();
|
|
void doom_load_graphics();
|
|
void doom_init();
|
|
void doom_close();
|
|
void doom_draw();
|
|
|
|
#endif /* __DOOM_H__ */
|