1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 12:07:23 +08:00
osu-lazer/osu.Game/GameModes/Play/HitRenderer.cs

31 lines
848 B
C#
Raw Normal View History

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;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Batches;
2016-09-02 18:25:13 +08:00
using osu.Framework.Graphics.Containers;
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-09-02 18:25:13 +08:00
namespace osu.Game.GameModes.Play
{
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; }
public HitRenderer()
{
RelativeSizeAxes = Axes.Both;
}
public override void Load()
{
base.Load();
Add(new Box() { RelativeSizeAxes = Axes.Both, Alpha = 0.1f, Scale = new Vector2(0.99f) });
}
2016-09-02 18:25:13 +08:00
}
}