27 lines
373 B
C#
27 lines
373 B
C#
namespace RewiredConsts;
|
|
|
|
public static class Layout
|
|
{
|
|
public static class Joystick
|
|
{
|
|
public const int Default = 0;
|
|
|
|
public const int Default_JP = 1;
|
|
}
|
|
|
|
public static class Keyboard
|
|
{
|
|
public const int Default = 0;
|
|
}
|
|
|
|
public static class Mouse
|
|
{
|
|
public const int Default = 0;
|
|
}
|
|
|
|
public static class CustomController
|
|
{
|
|
public const int Default = 0;
|
|
}
|
|
}
|