CreateEntityIterator - Create entity iterator according to collection.
()
| 98 | |
| 99 | // CreateEntityIterator - Create entity iterator according to collection. |
| 100 | func (e *EntityCollection) CreateEntityIterator() *EntityIterator { |
| 101 | return &EntityIterator{ |
| 102 | entities: e.entities, |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | // GetEntities - Get entities |
| 107 | func (e *EntityCollection) GetEntities() []*base.Entity { |
no outgoing calls