(o Identifier)
| 124 | sys.entities = append(sys.entities, MySystemTwoEntity{e, c2}) |
| 125 | } |
| 126 | func (sys *MySystemTwo) AddByInterface(o Identifier) { |
| 127 | obj := o.(MySystemTwoable) |
| 128 | sys.Add(obj.GetBasicEntity(), obj.GetMyComponent2()) |
| 129 | } |
| 130 | |
| 131 | type MyEntity1 struct { |
| 132 | BasicEntity |
nothing calls this directly
no test coverage detected