- 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)
17 lines
319 B
C
17 lines
319 B
C
/**
|
|
* @file dead.h
|
|
*
|
|
* Interface of functions for placing dead monsters.
|
|
*/
|
|
#ifndef __DEAD_H__
|
|
#define __DEAD_H__
|
|
|
|
extern int spurtndx;
|
|
extern DeadStruct dead[MAXDEAD];
|
|
extern int stonendx;
|
|
|
|
void InitDead();
|
|
void AddDead(int dx, int dy, char dv, int ddir);
|
|
void SetDead();
|
|
|
|
#endif /* __DEAD_H__ */
|