gg/cmd/test/text.go

25 lines
237 B
Go
Raw Normal View History

2024-01-13 18:17:34 +03:00
package main
import (
"vultras.su/core/gg"
)
type Objecter interface{
}
type Wrap[V Objecter] struct {
O V
}
//func (w *Wrap)
type Context2 struct {
*gg.Context
2024-01-13 18:17:34 +03:00
}
type Text Wrap[struct{
gg.Text
}]
2024-01-13 18:17:34 +03:00
//func (txt *Text) Update()