// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.ComponentModel; namespace osu.Game.Beatmaps.Timing { public enum TimeSignatures { [Description("4/4")] SimpleQuadruple = 4, [Description("3/4")] SimpleTriple = 3 } }