- 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)
11 lines
177 B
C
11 lines
177 B
C
/**
|
|
* @file capture.h
|
|
*
|
|
* Interface of the screenshot function.
|
|
*/
|
|
#ifndef __CAPTURE_H__
|
|
#define __CAPTURE_H__
|
|
|
|
void CaptureScreen();
|
|
|
|
#endif /* __CAPTURE_H__ */
|