// // Copyright (c) Adrian Conlon. All rights reserved. // namespace EightBit { public enum Mask { None = 0, One = Bits.Bit1 - 1, Two = Bits.Bit2 - 1, Three = Bits.Bit3 - 1, Four = Bits.Bit4 - 1, Five = Bits.Bit5 - 1, Six = Bits.Bit6 - 1, Seven = Bits.Bit7 - 1, Eight = Bits.Bit8 - 1, Nine = Bits.Bit9 - 1, Ten = Bits.Bit10 - 1, Eleven = Bits.Bit11 - 1, Twelve = Bits.Bit12 - 1, Thirteen = Bits.Bit13 - 1, Fourteen = Bits.Bit14 - 1, Fifteen = Bits.Bit15 - 1, Sixteen = Bits.Bit16 - 1, } }