19 lines
382 B
C#
19 lines
382 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public sealed class TextAsset : NamedObject
|
|
{
|
|
public byte[] m_Script;
|
|
|
|
public TextAsset(ObjectReader reader) : base(reader)
|
|
{
|
|
m_Script = reader.ReadBytes(reader.ReadInt32());
|
|
}
|
|
}
|
|
}
|