mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
It's file for precompiled headers. Include what is used, don't rely on transitive includes.
12 lines
167 B
C++
12 lines
167 B
C++
#pragma once
|
|
|
|
#include "util/types.hpp"
|
|
#include "util/atomic.hpp"
|
|
|
|
namespace input
|
|
{
|
|
extern atomic_t<bool> g_intercepted;
|
|
|
|
void SetIntercepted(bool intercepted);
|
|
}
|