1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-03 05:25:38 +08:00

Remove IDependencyInjectionCandidate interface from Room

This commit is contained in:
Dan Balasescu 2024-11-15 16:05:06 +09:00
parent 1a656d0ec3
commit db7def9d34
No known key found for this signature in database

View File

@ -7,7 +7,6 @@ using System.ComponentModel;
using System.Linq; using System.Linq;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using Newtonsoft.Json; using Newtonsoft.Json;
using osu.Framework.Allocation;
using osu.Game.IO.Serialization.Converters; using osu.Game.IO.Serialization.Converters;
using osu.Game.Online.API.Requests.Responses; using osu.Game.Online.API.Requests.Responses;
using osu.Game.Online.Multiplayer; using osu.Game.Online.Multiplayer;
@ -16,7 +15,7 @@ using osu.Game.Online.Rooms.RoomStatuses;
namespace osu.Game.Online.Rooms namespace osu.Game.Online.Rooms
{ {
[JsonObject(MemberSerialization.OptIn)] [JsonObject(MemberSerialization.OptIn)]
public partial class Room : IDependencyInjectionCandidate, INotifyPropertyChanged public partial class Room : INotifyPropertyChanged
{ {
public event PropertyChangedEventHandler? PropertyChanged; public event PropertyChangedEventHandler? PropertyChanged;