zntg/ui/texture.go

12 lines
201 B
Go
Raw Normal View History

package ui
import "opslag.de/schobers/geom"
2020-05-12 21:03:43 +00:00
type Texture interface {
Destroy() error
Height() int
Width() int
}
func SizeOfTexture(t Texture) geom.Point { return geom.Pt(t.Width(), t.Height()) }