mirror of
https://github.com/aelurum/AssetStudio.git
synced 2026-02-05 09:40:03 -05:00
15 lines
225 B
C#
15 lines
225 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public enum EndianType
|
|
{
|
|
LittleEndian,
|
|
BigEndian
|
|
}
|
|
}
|