(index uintptr)
| 44 | } |
| 45 | |
| 46 | func (list *PlayerList) playerAtIndex(index uintptr) *Player { |
| 47 | return *(**Player)(list.playerList.Element(index)) |
| 48 | } |
| 49 | |
| 50 | func (list *PlayerList) AddPlayer(player *Player) { |
| 51 | list.addPlayerToSlice(player) |
no test coverage detected