mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-22 04:29:18 +08:00
19 lines
369 B
C#
19 lines
369 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace AssetStudio
|
|||
|
{
|
|||
|
public abstract class Behaviour : Component
|
|||
|
{
|
|||
|
public byte m_Enabled;
|
|||
|
|
|||
|
protected Behaviour(ObjectReader reader) : base(reader)
|
|||
|
{
|
|||
|
m_Enabled = reader.ReadByte();
|
|||
|
reader.AlignStream();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|