31 lines
426 B
Go
31 lines
426 B
Go
package allg5ui
|
|
|
|
import (
|
|
"image"
|
|
|
|
"opslag.de/schobers/allg5"
|
|
"opslag.de/schobers/zntg/ui"
|
|
)
|
|
|
|
var _ ui.Image = &uiImage{}
|
|
|
|
type uiImage struct {
|
|
bmp *allg5.Bitmap
|
|
}
|
|
|
|
func (i *uiImage) Destroy() {
|
|
i.bmp.Destroy()
|
|
}
|
|
|
|
func (i *uiImage) Height() float32 {
|
|
return float32(i.bmp.Height())
|
|
}
|
|
|
|
func (i *uiImage) Image() image.Image {
|
|
return i.bmp.Image()
|
|
}
|
|
|
|
func (i *uiImage) Width() float32 {
|
|
return float32(i.bmp.Width())
|
|
}
|