mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-12-21 22:16:23 +00:00
Port of EightBit library to .Net (unworking!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
25
EightBit/Mask.cs
Normal file
25
EightBit/Mask.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
public enum Mask
|
||||
{
|
||||
None = 0,
|
||||
Mask1 = Bits.Bit1 - 1,
|
||||
Mask2 = Bits.Bit2 - 1,
|
||||
Mask3 = Bits.Bit3 - 1,
|
||||
Mask4 = Bits.Bit4 - 1,
|
||||
Mask5 = Bits.Bit5 - 1,
|
||||
Mask6 = Bits.Bit6 - 1,
|
||||
Mask7 = Bits.Bit7 - 1,
|
||||
Mask8 = Bits.Bit8 - 1,
|
||||
Mask9 = Bits.Bit9 - 1,
|
||||
Mask10 = Bits.Bit10 - 1,
|
||||
Mask11 = Bits.Bit11 - 1,
|
||||
Mask12 = Bits.Bit12 - 1,
|
||||
Mask13 = Bits.Bit13 - 1,
|
||||
Mask14 = Bits.Bit14 - 1,
|
||||
Mask15 = Bits.Bit15 - 1,
|
||||
Mask16 = Bits.Bit16 - 1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user