mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 14:50:54 +08:00
16 lines
538 B
C#
16 lines
538 B
C#
using Symcol.Rulesets.Core.Multiplayer.Networking;
|
|
using Symcol.Rulesets.Core.Multiplayer.Screens;
|
|
|
|
namespace osu.Game.Rulesets.Shape.Multi
|
|
{
|
|
public class ShapeMatchScreen : RulesetMatchScreen
|
|
{
|
|
public readonly RulesetNetworkingClientHandler ShapeNetworkingClientHandler;
|
|
|
|
public ShapeMatchScreen(RulesetNetworkingClientHandler shapeNetworkingClientHandler) : base(shapeNetworkingClientHandler)
|
|
{
|
|
ShapeNetworkingClientHandler = shapeNetworkingClientHandler;
|
|
}
|
|
}
|
|
}
|