package elements import ( "git.vezzani.net/ben/games/common/geo" "github.com/hajimehoshi/ebiten/v2" ) type Element interface { Draw(*ebiten.Image) SetAnchor(geo.Point) Anchor() geo.Point Size() (w, h int) Children() []Element }