mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 23:47:24 +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
|
|
}
|
|
} |