(props []tmx.Property)
| 402 | } |
| 403 | |
| 404 | func getProperties(props []tmx.Property) []Property { |
| 405 | ret := make([]Property, 0) |
| 406 | for _, p := range props { |
| 407 | ret = append(ret, Property{ |
| 408 | Name: p.Name, |
| 409 | Type: p.Type, |
| 410 | Value: p.Value, |
| 411 | }) |
| 412 | } |
| 413 | return ret |
| 414 | } |
no outgoing calls
no test coverage detected