|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class NamedObject : EditorExtension
|
|
{
|
|
public string m_Name;
|
|
|
|
public NamedObject(ObjectReader reader) : base(reader)
|
|
{
|
|
m_Name = reader.ReadAlignedString();
|
|
}
|
|
}
|
|
}
|