mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 00:27:25 +08:00
Required changes for framework merge (https://github.com/ppy/osu-framework/pull/554).
This commit is contained in:
parent
dcc7386609
commit
57cbecba83
@ -148,7 +148,7 @@ namespace osu.Game.Screens.Play
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
playerInputManager = new PlayerInputManager(game.Host)
|
||||
playerInputManager = new PlayerInputManager
|
||||
{
|
||||
Clock = new InterpolatingFramedClock(sourceClock),
|
||||
Children = new Drawable[]
|
||||
|
@ -5,7 +5,6 @@ using OpenTK.Input;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Configuration;
|
||||
using osu.Framework.Input;
|
||||
using osu.Framework.Platform;
|
||||
using osu.Game.Configuration;
|
||||
using System.Linq;
|
||||
|
||||
@ -13,11 +12,6 @@ namespace osu.Game.Screens.Play
|
||||
{
|
||||
class PlayerInputManager : UserInputManager
|
||||
{
|
||||
public PlayerInputManager(GameHost host)
|
||||
: base(host)
|
||||
{
|
||||
}
|
||||
|
||||
bool leftViaKeyboard;
|
||||
bool rightViaKeyboard;
|
||||
Bindable<bool> mouseDisabled;
|
||||
|
Loading…
Reference in New Issue
Block a user