LethalCompany/Lethal Company/ExportedProject/Assets/Plugins/Assembly-CSharp-firstpass/ES3Internal/ES3Data.cs
2023-12-22 18:30:10 -05:00

24 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;
}
}
}