(b BasicEntity, p *PriorityComponent)
| 77 | } |
| 78 | |
| 79 | func (s *SystemAddRemove) Add(b BasicEntity, p *PriorityComponent) { |
| 80 | s.entities = append(s.entities, PriorityEntity{b, p}) |
| 81 | } |
| 82 | |
| 83 | func (s *SystemAddRemove) Remove(basic BasicEntity) { |
| 84 | delete := -1 |
no outgoing calls
no test coverage detected