zntg/ui/image.go
Sander Schobers ff51378aff Added button types.
Go image can be reconstructed from ui.Image/allg5.Bitmap.
Changed allg5.Scale from interface to struct.
2019-03-13 19:49:00 +01:00

11 lines
120 B
Go

package ui
import "image"
type Image interface {
Destroy()
Height() float32
Image() image.Image
Width() float32
}