12 lines
146 B
C++
12 lines
146 B
C++
/**
|
|
* @file capture.h
|
|
*
|
|
* Interface of the screenshot function.
|
|
*/
|
|
#pragma once
|
|
|
|
namespace devilution {
|
|
|
|
void CaptureScreen();
|
|
|
|
}
|