AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Script/ControlSchemes/NormalScheme.cs
2024-09-23 18:15:34 +08:00

19 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AxibugEmuOnline.Client
{
public class NormalScheme : ControlScheme
{
}
public static partial class ControlSchemeSetts
{
public static NormalScheme Normal { get; private set; } = new NormalScheme();
}
}