24 lines
237 B
Go
24 lines
237 B
Go
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
|
|
}
|
|
|
|
type Text Wrap[struct{
|
|
gg.Text
|
|
}]
|
|
|
|
//func (txt *Text) Update()
|