2016-08-31 11:33:01 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-11-28 14:31:54 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-08-31 11:33:01 +08:00
|
|
|
|
using osu.Game.Beatmaps.Samples;
|
2016-11-02 17:08:08 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-01-10 06:18:47 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2016-08-31 11:33:01 +08:00
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes.Objects
|
2016-08-31 11:33:01 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A hitobject describes a point in a beatmap
|
|
|
|
|
/// </summary>
|
2016-09-26 14:07:29 +08:00
|
|
|
|
public abstract class HitObject
|
2016-08-31 11:33:01 +08:00
|
|
|
|
{
|
|
|
|
|
public double StartTime;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
public virtual double EndTime => StartTime;
|
2016-08-31 11:33:01 +08:00
|
|
|
|
|
2016-11-02 17:08:08 +08:00
|
|
|
|
public bool NewCombo { get; set; }
|
|
|
|
|
|
2017-01-13 05:38:27 +08:00
|
|
|
|
public Color4 Colour = new Color4(17, 136, 170, 255);
|
2016-11-02 17:08:08 +08:00
|
|
|
|
|
2016-10-19 18:44:03 +08:00
|
|
|
|
public double Duration => EndTime - StartTime;
|
2016-09-02 17:31:32 +08:00
|
|
|
|
|
2016-08-31 12:51:00 +08:00
|
|
|
|
public HitSampleInfo Sample;
|
2016-11-28 17:45:50 +08:00
|
|
|
|
|
|
|
|
|
public virtual void SetDefaultsFromBeatmap(Beatmap beatmap) { }
|
2016-08-31 11:33:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|