Exemple #1
0
func play(s game.State, limit time.Duration) game.State {
	f := s.Futures()
	if len(f) == 0 {
		panic("Ah! There are no future states. Why'd the server send this to me? =( ")
	}
	return *f[0]
}