(i Identifier)
| 44 | } |
| 45 | |
| 46 | func (s *simpleSystem) AddByInterface(i Identifier) { |
| 47 | obj, ok := i.(BasicFace) |
| 48 | if ok { |
| 49 | s.Add(obj.GetBasicEntity()) |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func (s *simpleSystem) Remove(b BasicEntity) {} |
| 54 |
nothing calls this directly
no test coverage detected