using System; namespace OpenVIII { [Flags] public enum Table_Options { /// /// No flags set. /// Default = 0x0, /// /// Default fills 1 col at a time. This will make it fill 1 row at a time. /// FillRows = 0x1, } }