19 lines
384 B
C#
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();
|
|
}
|
|
}
|