Mark base classes non-abstract to fix messagepack serialisation

This commit is contained in:
Dean Herbert
2021-07-23 19:48:52 +09:00
parent 1c125eef12
commit 1d645d4ca9
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ namespace osu.Game.Online.Multiplayer
/// </summary> /// </summary>
[Serializable] [Serializable]
[MessagePackObject] [MessagePackObject]
public abstract class MatchRulesetRoomState public class MatchRulesetRoomState
{ {
} }
} }

View File

@ -12,7 +12,7 @@ namespace osu.Game.Online.Multiplayer
/// </summary> /// </summary>
[Serializable] [Serializable]
[MessagePackObject] [MessagePackObject]
public abstract class MatchRulesetUserState public class MatchRulesetUserState
{ {
} }
} }