13 lines
234 B
C#
13 lines
234 B
C#
using System;
|
|
|
|
namespace Cryville.Crtr.Config.UI {
|
|
[Flags]
|
|
public enum InputDeviceStatus {
|
|
Default = 0x00,
|
|
Used = 0x01,
|
|
InsufficientDimension = 0x02,
|
|
IncompatiblePhysicalDimension = 0x04,
|
|
IncompatibleNullable = 0x08,
|
|
}
|
|
}
|