mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
260 B
C++
15 lines
260 B
C++
#pragma once
|
|
|
|
#include "Emu/Io/MouseHandler.h"
|
|
|
|
class NullMouseHandler final : public MouseHandlerBase
|
|
{
|
|
public:
|
|
void Init(const u32 max_connect) override
|
|
{
|
|
memset(&m_info, 0, sizeof(MouseInfo));
|
|
m_info.max_connect = max_connect;
|
|
m_mice.clear();
|
|
}
|
|
};
|