Matrix/conway.go

30 lines
349 B
Go
Raw Normal View History

2024-04-12 13:14:33 +00:00
package main
import (
"github.com/go-resty/resty/v2"
)
type Cell struct {
x int
y int
live bool
}
func (c *Cell) NeighborCount() int {
}
func coordinatesToIndex(x int, y int) int {
return x + y*width
}
var grid []Cell
func setup(client *resty.Client, url, width int, height int) {
}
func draw() {
}