mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 19:39:19 +08:00
20 lines
438 B
C#
20 lines
438 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AssetStudio
|
|||
|
{
|
|||
|
public sealed class MonoBehaviour : Behaviour
|
|||
|
{
|
|||
|
public PPtr<MonoScript> m_Script;
|
|||
|
public string m_Name;
|
|||
|
|
|||
|
public MonoBehaviour(ObjectReader reader) : base(reader)
|
|||
|
{
|
|||
|
m_Script = new PPtr<MonoScript>(reader);
|
|||
|
m_Name = reader.ReadAlignedString();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|