blob: 5b60487cfc6e404da603986e6d009331363071f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright 2008 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
namespace ciface::Android
{
void SetMotionSensorsEnabled(bool accelerometer_enabled, bool gyroscope_enabled);
void PopulateDevices();
} // namespace ciface::Android
|