namespace Swan { /// /// Enumeration of Operating Systems. /// public enum OperatingSystem { /// /// Unknown OS /// Unknown, /// /// Windows /// Windows, /// /// UNIX/Linux /// Unix, /// /// macOS (OSX) /// Osx, } /// /// Defines Endianness, big or little. /// public enum Endianness { /// /// In big endian, you store the most significant byte in the smallest address. /// Big, /// /// In little endian, you store the least significant byte in the smallest address. /// Little, } }