mirror of
https://github.com/ppy/osu
synced 2024-12-12 18:07:52 +00:00
24 lines
766 B
C#
24 lines
766 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.
|
||
|
|
||
|
namespace osu.Game.Screens.Play
|
||
|
{
|
||
|
public class PlayerConfiguration
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Whether pausing should be allowed. If not allowed, attempting to pause will quit.
|
||
|
/// </summary>
|
||
|
public bool AllowPause { get; set; } = true;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Whether results screen should be pushed on completion.
|
||
|
/// </summary>
|
||
|
public bool ShowResults { get; set; } = true;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Whether the player should be allowed to trigger a restart.
|
||
|
/// </summary>
|
||
|
public bool AllowRestart { get; set; } = true;
|
||
|
}
|
||
|
}
|