mirror of
https://github.com/ppy/osu
synced 2024-12-14 02:46:27 +00: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
|
|
}
|
|
} |