mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 11:29:18 +08:00
18 lines
389 B
C#
18 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class SerializedFileHeader
|
|
{
|
|
public uint m_MetadataSize;
|
|
public long m_FileSize;
|
|
public SerializedFileFormatVersion m_Version;
|
|
public long m_DataOffset;
|
|
public byte m_Endianess;
|
|
public byte[] m_Reserved;
|
|
}
|
|
}
|