// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.ComponentModel; namespace osu.Game.Rulesets.Scoring { public enum HitResult { /// /// Indicates that the object has not been judged yet. /// [Description(@"")] None, /// /// Indicates that the object has been judged as a miss. /// [Description(@"Miss")] Miss, [Description(@"Meh")] Meh, /// /// Optional judgement. /// [Description(@"OK")] Ok, [Description(@"Good")] Good, [Description(@"Great")] Great, /// /// Optional judgement. /// [Description(@"Perfect")] Perfect, } }