mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 02:49:53 +08:00
15 lines
444 B
C#
15 lines
444 B
C#
using Symcol.Rulesets.Core.Multiplayer.Networking;
|
|
using Symcol.Rulesets.Core.Multiplayer.Screens;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Rulesets.Shape.Multi
|
|
{
|
|
public class ShapeLobbyScreen : RulesetLobbyScreen
|
|
{
|
|
public override string RulesetName => "shape";
|
|
|
|
public override RulesetMatchScreen MatchScreen => new ShapeMatchScreen(RulesetNetworkingClientHandler);
|
|
}
|
|
}
|