14 lines
161 B
Go
14 lines
161 B
Go
package conway
|
|
|
|
type GameOfLife struct {
|
|
Height uint8
|
|
Width uint8
|
|
}
|
|
|
|
func NewGameOfLife() *GameOfLife {
|
|
return &GameOfLife{
|
|
Height: 16,
|
|
Width: 16,
|
|
}
|
|
}
|