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