mirror of
https://github.com/ppy/osu.git
synced 2025-01-27 11:52:54 +08:00
12 lines
207 B
C#
12 lines
207 B
C#
|
using System;
|
|||
|
namespace osu.Game.Configuration
|
|||
|
{
|
|||
|
public enum FrameSync
|
|||
|
{
|
|||
|
VSync = 1,
|
|||
|
Limit120 = 0,
|
|||
|
Unlimited = 2,
|
|||
|
CompletelyUnlimited = 4,
|
|||
|
Custom = 5
|
|||
|
}
|
|||
|
}
|