13 lines
332 B
C#
Raw Normal View History

2024-08-17 14:27:18 +08:00
using Entitas;
using Game.JNGFrame.Logic.Entity.Contexts;
using JNGame.Sync.State.Tile.Entity;
namespace Game.JNGFrame.Logic.Entity
{
public class EDContexts : JNTileContexts
{
2024-08-31 15:35:12 +08:00
public override IContext[] allContexts { get; } = { new EDNodeContext(),new EDPlayerContext(),new EDBossContext(), };
2024-08-17 14:27:18 +08:00
}
}