Files
2026-03-04 10:03:45 +08:00

25 lines
383 B
C#

using System;
using ES3Types;
namespace ES3Internal
{
public struct ES3Data
{
public ES3Type type;
public byte[] bytes;
public ES3Data(Type type, byte[] bytes)
{
this.type = ((type == null) ? null : ES3TypeMgr.GetOrCreateES3Type(type));
this.bytes = bytes;
}
public ES3Data(ES3Type type, byte[] bytes)
{
this.type = type;
this.bytes = bytes;
}
}
}