mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-22 12:39:18 +08:00
18 lines
341 B
C#
18 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace AssetStudio
|
|
{
|
|
public class NamedObject : EditorExtension
|
|
{
|
|
public string m_Name;
|
|
|
|
protected NamedObject(ObjectReader reader) : base(reader)
|
|
{
|
|
m_Name = reader.ReadAlignedString();
|
|
}
|
|
}
|
|
}
|