2016-09-02 18:25:13 +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
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Batches;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Drawables;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
using osu.Game.Beatmaps.Objects;
|
2016-09-11 01:27:42 +08:00
|
|
|
|
using OpenTK;
|
2016-10-05 19:49:31 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-10-10 16:17:26 +08:00
|
|
|
|
using osu.Framework;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.GameModes.Play
|
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
public abstract class HitRenderer : Container
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2016-09-28 14:49:47 +08:00
|
|
|
|
public abstract List<HitObject> Objects { set; }
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2016-10-01 17:40:14 +08:00
|
|
|
|
public HitRenderer()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-10 16:17:26 +08:00
|
|
|
|
public override void Load(BaseGame game)
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-10 16:17:26 +08:00
|
|
|
|
base.Load(game);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2016-10-05 19:49:31 +08:00
|
|
|
|
Add(new Box()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Alpha = 0.8f,
|
|
|
|
|
Colour = new Color4(5, 5, 5, 255),
|
|
|
|
|
});
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|