// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. namespace osu.Game.Rulesets.Mods { /// /// An interface for a mod which can temporarily override screen settings. /// public interface IApplicableToScreen : IApplicableMod { /// /// Whether to enable image, video and storyboard dimming /// bool EnableDim { get; } /// /// Weather to force the video (if present) /// bool ForceVideo { get; } /// /// Weather to force the storyboard (if present) /// bool ForceStoryboard { get; } } }