mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
2923c10cd8
Update test to the new structure
22 lines
674 B
C#
22 lines
674 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 System;
|
|
using MessagePack;
|
|
using osu.Game.Online.Multiplayer.Countdown;
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
|
{
|
|
/// <summary>
|
|
/// An event from the server to allow clients to update gameplay to an expected state.
|
|
/// </summary>
|
|
[Serializable]
|
|
[MessagePackObject]
|
|
// IMPORTANT: Add rules to SignalRUnionWorkaroundResolver for new derived types.
|
|
[Union(0, typeof(CountdownStartedEvent))]
|
|
[Union(1, typeof(CountdownStoppedEvent))]
|
|
public abstract class MatchServerEvent
|
|
{
|
|
}
|
|
}
|