Files
game-of-life/ui/events.go
Natercio Moniz ea5b5c4e75 Initial commit
implemented the game of life variation with hexagonal grid
2025-12-16 11:33:00 +00:00

10 lines
282 B
Go

package ui
const (
ResetButtonEvent = "reset_button"
SpeedSliderEvent = "speed_slider"
ReproductionTargetEvent = "reproduction_target_slider"
OverPopulationSliderEvent = "over_population_slider"
UnderPopulationSliderEvent = "under_population_slider"
)