mirror of
https://github.com/ppy/osu.git
synced 2026-05-26 05:19:56 +08:00
16 lines
370 B
C#
16 lines
370 B
C#
using OpenTK;
|
|
using osu.Game.Rulesets.UI;
|
|
using Symcol.Rulesets.Core.Multiplayer.Networking;
|
|
|
|
namespace Symcol.Rulesets.Core
|
|
{
|
|
public class SymcolPlayfield : Playfield
|
|
{
|
|
public static RulesetNetworkingClientHandler RulesetNetworkingClientHandler;
|
|
|
|
public SymcolPlayfield(Vector2 size) : base(size.X)
|
|
{
|
|
}
|
|
}
|
|
}
|