1 Commits

Author SHA1 Message Date
8e7db331a7 some refinement 2025-09-06 09:32:53 -04:00
2 changed files with 0 additions and 22 deletions

View File

@@ -1,3 +0,0 @@
package tables
type OptFunc func(*Table)

View File

@@ -1,19 +0,0 @@
package tables
import (
"git.vezzani.net/ben/games/common/elements/v1/core"
)
type Table struct {
core.Element
}
func New(ops ...OptFunc) *Table {
t := &Table{}
for i := range ops {
ops[i](t)
}
return t
}