This commit is contained in:
Bel LaPointe
2021-03-13 15:59:07 -06:00
parent cb42bdc8d0
commit 4bf83b3e40
20 changed files with 267 additions and 13 deletions

7
src/entity/players.go Normal file
View File

@@ -0,0 +1,7 @@
package entity
type Players []Player
func (players *Players) Add(player Player) {
*players = append(*players, player)
}