屏蔽门模拟

This commit is contained in:
xzb 2023-08-16 18:15:30 +08:00
parent bf29ca43d0
commit c44a6a5db2

View File

@ -14,7 +14,8 @@ type PsdSystem struct {
func NewPsdSystem() *PsdSystem {
return &PsdSystem{
psdQuery: ecs.NewQuery(filter.Contains(components.ComDeviceIdentity, components.ComPsdState, components.ComEntityTagHandler)),
psdQuery: ecs.NewQuery(filter.Contains(components.ComDeviceIdentity, components.ComPsdState, components.ComEntityTagHandler)),
psdTagMap: make(map[state.EntityTag]*ecs.Query),
}
}