Some improvements

This commit is contained in:
Perfare
2021-12-09 17:13:21 +08:00
parent 3370f93037
commit 3660b4ed67
6 changed files with 50 additions and 46 deletions

14
AssetStudio/EndianType.cs Normal file
View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AssetStudio
{
public enum EndianType
{
LittleEndian,
BigEndian
}
}