(i Identifier)
| 95 | func (s *priorityChangeSystem) Add(b *BasicEntity) {} |
| 96 | |
| 97 | func (s *priorityChangeSystem) AddByInterface(i Identifier) { |
| 98 | obj, ok := i.(BasicFace) |
| 99 | if ok { |
| 100 | s.Add(obj.GetBasicEntity()) |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | func (s *priorityChangeSystem) Remove(b BasicEntity) {} |
| 105 |
nothing calls this directly
no test coverage detected