mirror of
https://github.com/osukey/osukey.git
synced 2025-05-04 13:17:22 +09:00
20 lines
566 B
C#
20 lines
566 B
C#
using System.Collections.Generic;
|
|
using osu.Framework.Graphics.Primitives;
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
|
|
|
namespace osu.Game.Rulesets.Edit.Layers.Selection
|
|
{
|
|
public class SelectionInfo
|
|
{
|
|
/// <summary>
|
|
/// The objects that are captured by the selection.
|
|
/// </summary>
|
|
public IEnumerable<DrawableHitObject> Objects;
|
|
|
|
/// <summary>
|
|
/// The screen space quad of the selection box surrounding <see cref="Objects"/>.
|
|
/// </summary>
|
|
public Quad SelectionQuad;
|
|
}
|
|
}
|