Initial commit

implemented the game of life variation with hexagonal grid
This commit is contained in:
2025-12-16 11:33:00 +00:00
commit ea5b5c4e75
17 changed files with 1229 additions and 0 deletions

9
ui/events.go Normal file
View File

@@ -0,0 +1,9 @@
package ui
const (
ResetButtonEvent = "reset_button"
SpeedSliderEvent = "speed_slider"
ReproductionTargetEvent = "reproduction_target_slider"
OverPopulationSliderEvent = "over_population_slider"
UnderPopulationSliderEvent = "under_population_slider"
)