2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-31 11:33:01 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes.Objects
|
2016-08-31 11:33:01 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2017-03-13 18:15:25 +08:00
|
|
|
|
/// A HitObject describes an object in a Beatmap.
|
|
|
|
|
/// <para>
|
|
|
|
|
/// HitObjects may contain more properties for which you should be checking through the IHas* types.
|
|
|
|
|
/// </para>
|
2016-08-31 11:33:01 +08:00
|
|
|
|
/// </summary>
|
2017-03-13 18:15:25 +08:00
|
|
|
|
public class HitObject
|
2016-08-31 11:33:01 +08:00
|
|
|
|
{
|
2017-03-13 18:15:25 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The time at which the HitObject starts.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double StartTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The sample to be played when this HitObject is hit.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public HitSampleInfo Sample { get; set; }
|
2016-08-31 11:33:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|