//Copyright (c) 2007-2016 ppy Pty Ltd . //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Beatmaps.Samples; namespace osu.Game.Beatmaps.Objects { /// /// A hitobject describes a point in a beatmap /// public abstract class BaseHit { public double StartTime; public double? EndTime; public HitSampleInfo Sample; } }