Abstract DirectOverlay layout into base class for Social and osu!direct - BrowseOverlay, initial layout of social browser

This commit is contained in:
DrabWeb
2017-05-26 00:52:01 -03:00
parent e67a00f1f6
commit 8fca0fddb3
16 changed files with 683 additions and 371 deletions

View File

@ -0,0 +1,23 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Testing;
using osu.Game.Overlays;
namespace osu.Desktop.VisualTests.Tests
{
public class TestCaseSocial : TestCase
{
public override string Description => @"social browser overlay";
public override void Reset()
{
base.Reset();
SocialOverlay s = new SocialOverlay();
Add(s);
AddStep(@"toggle", s.ToggleVisibility);
}
}
}