LethalCompany/Lethal Company/ExportedProject/Assets/Plugins/Assembly-CSharp-firstpass/ES3Internal/ES3Data.cs

25 lines
383 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
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;
}
}
}