box-o-sand/conway/go/game_of_life.go
2012-12-08 21:47:21 -05:00

14 lines
161 B
Go

package conway
type GameOfLife struct {
Height uint8
Width uint8
}
func NewGameOfLife() *GameOfLife {
return &GameOfLife{
Height: 16,
Width: 16,
}
}