1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 22:22:54 +08:00
osu-lazer/osu.Game/Screens/Edit/Submission/BeatmapSubmissionSettings.cs
2025-02-05 14:01:37 +01:00

14 lines
428 B
C#

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Game.Online.API.Requests;
namespace osu.Game.Screens.Edit.Submission
{
public class BeatmapSubmissionSettings
{
public Bindable<BeatmapSubmissionTarget> Target { get; } = new Bindable<BeatmapSubmissionTarget>();
}
}