// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Beatmaps; using osu.Game.Beatmaps.Timing; using osu.Game.Database; namespace osu.Game.Modes.Objects { /// /// A set of default Beatmap values for HitObjects to consume. /// public class HitObjectDefaults { /// /// The Beatmap timing. /// public TimingInfo Timing; /// /// The Beatmap difficulty. /// public BaseDifficulty Difficulty; } }