osu/osu.Game/GameModes/Play/HitRenderer.cs

37 lines
957 B
C#
Raw Normal View History

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