mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
16 lines
379 B
C
16 lines
379 B
C
![]() |
#pragma once
|
||
|
#include "Config.h"
|
||
|
#include "PS2VM.h"
|
||
|
|
||
|
class CScreenShotUtils : public Framework::CConfig
|
||
|
{
|
||
|
public:
|
||
|
typedef std::function<void(int, const char*)> Callback;
|
||
|
|
||
|
static void TriggerGetScreenshot(CPS2VM*, Callback);
|
||
|
|
||
|
private:
|
||
|
static CConfig::PathType GetScreenShotDirectoryPath();
|
||
|
static CConfig::PathType GenerateScreenShotPath(const char* gameID);
|
||
|
};
|