mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-23 00:50:42 +01:00
11 lines
138 B
C++
11 lines
138 B
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
|
|
namespace input
|
|
{
|
|
extern std::atomic<bool> g_intercepted;
|
|
|
|
void SetIntercepted(bool intercepted);
|
|
}
|