Files
devilution/Source/doom.h
T
Anders Jenbo 3c276a3cd3 Add documentation
- 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)
2020-03-01 22:18:00 +01:00

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__ */