mirror of
https://github.com/kwsch/NHSE.git
synced 2026-05-14 06:19:53 -05:00
Originally ported from https://github.com/Martin005/SMO_Translation_Helper , via https://github.com/IcySon55/3DLandMSBTeditor Add some tests to ensure functions
8 lines
115 B
C#
8 lines
115 B
C#
namespace NHSE.Parsing
|
|
{
|
|
public enum ByteOrder
|
|
{
|
|
LittleEndian = 0,
|
|
BigEndian = 1
|
|
}
|
|
} |