dolphin/Source/Core/InputCommon/ControllerInterface/Quartz/Quartz.mm

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
513 B
Plaintext
Raw Normal View History

2016-08-09 22:48:22 +00:00
// Copyright 2016 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#include "InputCommon/ControllerInterface/Quartz/Quartz.h"
#include "InputCommon/ControllerInterface/ControllerInterface.h"
#include "InputCommon/ControllerInterface/Quartz/QuartzKeyboardAndMouse.h"
namespace ciface::Quartz
{
void PopulateDevices(void* window)
{
2017-04-16 02:23:19 +00:00
if (!window)
return;
g_controller_interface.AddDevice(std::make_shared<KeyboardAndMouse>(window));
}
void DeInit()
{
}
} // namespace ciface::Quartz