// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Modes.Objects.Drawables; using osu.Game.Modes.Scoring; namespace osu.Game.Modes.Judgements { /// /// Inidicates that the judgement this is attached to is a partial judgement and the scoring value may change. /// /// This judgement will be continually processed by /// unless the result is a miss and will trigger a full re-process of the when changed. /// /// public interface IPartialJudgement { /// /// Indicates that this partial judgement has changed and requires a full re-process of the . /// /// This is set to false once the judgement has been re-processed. /// /// bool Changed { get; set; } } }