mirror of
https://github.com/ppy/osu
synced 2024-12-12 18:07:52 +00:00
14 lines
319 B
C#
14 lines
319 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.
|
||
|
|
||
|
#nullable enable
|
||
|
namespace osu.Game.Screens.Utility
|
||
|
{
|
||
|
public enum LatencyVisualMode
|
||
|
{
|
||
|
Simple,
|
||
|
CircleGameplay,
|
||
|
ScrollingGameplay,
|
||
|
}
|
||
|
}
|