Files
MewtocolNet/MewtocolNet/RegisterAttributes/BitCount.cs
Felix Weiß 88ad175145 Restructured files
- householding
2023-06-23 15:40:34 +02:00

17 lines
313 B
C#

namespace MewtocolNet.RegisterAttributes {
/// <summary>
/// The size of the bitwise register
/// </summary>
public enum BitCount {
/// <summary>
/// 16 bit
/// </summary>
B16,
/// <summary>
/// 32 bit
/// </summary>
B32
}
}