namespace BizHawk.Client.Common { /// /// This enum specify the size of a /// public enum WatchSize { /// /// One byte (8 bits) /// Use this for /// Byte = 1, /// /// 2 bytes (16 bits) /// Use this for /// Word = 2, /// /// 4 bytes (32 bits) /// Use this for /// DWord = 4, /// /// Special case used for a separator in ram tools /// Use this for /// Separator = 0 } }