mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-12-26 03:51:45 +00:00
prepare game of life file
This commit is contained in:
parent
ba0ff0ab48
commit
fd35af10ac
29
conway.go
Normal file
29
conway.go
Normal file
@ -0,0 +1,29 @@
|
||||
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() {
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user