devilutionX/Source/dead.h
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

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