Mvoe private method to bottom

This commit is contained in:
Dean Herbert 2018-11-26 16:33:58 +09:00
parent 8d65d49126
commit 68f0d25550

View File

@ -34,12 +34,6 @@ namespace osu.Game.Input
this.timeToIdle = timeToIdle;
}
private bool updateLastInteractionTime()
{
lastInteractionTime = Clock.CurrentTime;
return false;
}
protected override void Update()
{
base.Update();
@ -64,5 +58,11 @@ namespace osu.Game.Input
return base.Handle(e);
}
}
private bool updateLastInteractionTime()
{
lastInteractionTime = Clock.CurrentTime;
return false;
}
}
}