lazarus/graphics/texture.go

12 lines
163 B
Go
Raw Normal View History

2019-01-01 01:30:59 +00:00
package graphics
import "github.com/FooSoft/lazarus/math"
type TextureId uintptr
type Texture interface {
Id() TextureId
Size() math.Vec2i
Destroy() error
}