WutheringWaves/GameServer/Systems/Entity/Component/EntityFsmComponent.cs

20 lines
439 B
C#

using Protocol;
namespace GameServer.Systems.Entity.Component;
internal class EntityFsmComponent : EntityComponentBase
{
public List<DFsm> Fsms { get; } = [];
public override EntityComponentType Type => EntityComponentType.EntityFsm;
public override EntityComponentPb Pb => new()
{
EntityFsmComponentPb = new()
{
Fsms =
{
Fsms
}
},
};
}