mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-01 06:10:00 +01:00
11 lines
141 B
C++
11 lines
141 B
C++
#pragma once
|
|
|
|
#include "util/atomic.hpp"
|
|
|
|
namespace input
|
|
{
|
|
extern atomic_t<bool> g_intercepted;
|
|
|
|
void SetIntercepted(bool intercepted);
|
|
}
|