mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 15:17:28 +08:00
10 lines
157 B
C#
10 lines
157 B
C#
|
using System;
|
|||
|
namespace osu.Game.Configuration
|
|||
|
{
|
|||
|
public enum ConfineMouseMode
|
|||
|
{
|
|||
|
Never,
|
|||
|
Fullscreen,
|
|||
|
Always
|
|||
|
}
|
|||
|
}
|