DESKTOP-5RP3AKU\Jisol b65b860b98 修复主从交互bug
2024-09-23 03:50:27 +08:00

15 lines
350 B
C#

using Entitas;
using Game.JNGFrame.Logic.Entity.Contexts;
using JNGame.Sync.State.Tile.Entity;
namespace Game.JNGFrame.Logic.Entity
{
public class EDContexts : JNTileContexts
{
public override IContext[] allContexts { get; } = { new EDNodeContext(),new EDPlayerContext(),new EDBossContext(), };
}
}