Files
games/common/ux/v1/ux.go
2025-08-25 14:29:26 -04:00

15 lines
240 B
Go

package ux
import (
"image/color"
"golang.org/x/image/font"
"golang.org/x/image/font/basicfont"
)
var (
FontFace font.Face = basicfont.Face7x13
BackgroundColor color.Color = color.White
Scale float64 = 1.0
)