holy shit components are rendering whaaaaaaaaaaaaaaaat

This commit is contained in:
2025-08-28 14:32:23 -04:00
parent 573396054f
commit 8166cbff99
14 changed files with 465 additions and 268 deletions

View File

@@ -0,0 +1,26 @@
package stacks
import (
"git.vezzani.net/ben/games/common/elements/v1"
"git.vezzani.net/ben/games/common/elements/v1/blocks"
)
type Option func(*Stack)
func BlockOpt(o blocks.Option) Option {
return func(s *Stack) {
o(&s.Block)
}
}
func Children(children ...elements.ElementFunc) Option {
return func(s *Stack) {
s.children = children
}
}
func Horizontal() Option {
return func(s *Stack) {
s.horizontal = true
}
}