doAction.go 100 B

1234567
  1. package game
  2. import "fmt"
  3. func (game *Game) doAction(action int) {
  4. fmt.Println("Did a thing!")
  5. }