mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Create and use DatItems.FeatureType
This commit is contained in:
@@ -17,6 +17,33 @@ namespace SabreTools.Library.DatItems
|
||||
External = 1 << 3,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determine the feature type
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum FeatureType
|
||||
{
|
||||
/// <summary>
|
||||
/// This is a fake flag that is used for filter only
|
||||
/// </summary>
|
||||
NULL = 0,
|
||||
|
||||
Protection = 1 << 0,
|
||||
Palette = 1 << 1,
|
||||
Graphics = 1 << 2,
|
||||
Sound = 1 << 3,
|
||||
Controls = 1 << 4,
|
||||
Keyboard = 1 << 5,
|
||||
Mouse = 1 << 6,
|
||||
Microphone = 1 << 7,
|
||||
Camera = 1 << 8,
|
||||
Disk = 1 << 9,
|
||||
Printer = 1 << 10,
|
||||
Lan = 1 << 11,
|
||||
Wan = 1 << 12,
|
||||
Timing = 1 << 13,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// List of valid field types within a DatItem/Machine
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user