Add basic UI for reporting

This commit is contained in:
ansel
2022-10-14 15:52:09 +03:00
parent 47d7d6fad9
commit c65a8a83f3
4 changed files with 109 additions and 5 deletions

View File

@ -10,6 +10,7 @@ using NUnit.Framework;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Testing;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
@ -42,9 +43,13 @@ namespace osu.Game.Tests.Visual.Online
{
base.Content.AddRange(new Drawable[]
{
content = new OsuScrollContainer
new PopoverContainer()
{
RelativeSizeAxes = Axes.Both
RelativeSizeAxes = Axes.Both,
Child = content = new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both
}
},
dialogOverlay
});