(o Identifier)
| 33 | sys.entities = append(sys.entities, MySystemOneEntity{e, c1}) |
| 34 | } |
| 35 | func (sys *MySystemOne) AddByInterface(o Identifier) { |
| 36 | obj := o.(MySystemOneable) |
| 37 | sys.Add(obj.GetBasicEntity(), obj.GetMyComponent1()) |
| 38 | } |
| 39 | |
| 40 | type MySystemOneTwoEntity struct { |
| 41 | e *BasicEntity |
nothing calls this directly
no test coverage detected