lazarus/graphics/tecture.go
2018-12-31 20:43:15 -08:00

12 lines
163 B
Go

package graphics
import "github.com/FooSoft/lazarus/math"
type TextureId uintptr
type Texture interface {
Id() TextureId
Size() math.Vec2i
Destroy() error
}