Sander Schobers
ff51378aff
Go image can be reconstructed from ui.Image/allg5.Bitmap. Changed allg5.Scale from interface to struct.
11 lines
120 B
Go
11 lines
120 B
Go
package ui
|
|
|
|
import "image"
|
|
|
|
type Image interface {
|
|
Destroy()
|
|
Height() float32
|
|
Image() image.Image
|
|
Width() float32
|
|
}
|