mirror of
https://github.com/ppy/osu.git
synced 2026-05-15 14:13:01 +08:00
cb0592d711
Rider EAP being noisy about this now (smoogi will be happy :D).
16 lines
440 B
C#
16 lines
440 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Input;
|
|
|
|
namespace osu.Game.Rulesets.UI
|
|
{
|
|
/// <summary>
|
|
/// Expose the <see cref="ReplayRecorder"/> in a capable <see cref="InputManager"/>.
|
|
/// </summary>
|
|
public interface IHasRecordingHandler
|
|
{
|
|
ReplayRecorder? Recorder { get; set; }
|
|
}
|
|
}
|