8 lines
83 B
Go
8 lines
83 B
Go
package ui
|
|
|
|
type Image interface {
|
|
Height() float32
|
|
Width() float32
|
|
Destroy()
|
|
}
|