add build directions to doc

This commit is contained in:
grngxd 2025-06-16 23:57:10 +01:00
parent 6c84e18ce8
commit f858daff59
3 changed files with 18 additions and 4 deletions

View file

@ -25,14 +25,14 @@ type Tiramisu struct {
func New(o TiramisuOptions) *Tiramisu {
w := wv.New(o.Debug)
w.SetSize(o.Width, o.Height, o.Hints)
w.SetTitle(o.Title)
t := &Tiramisu{
w: w,
funcs: make(map[string]FuncHandler),
}
w.SetSize(o.Width, o.Height, o.Hints)
w.SetTitle(o.Title)
return t
}