lazarus/graphics/texture.go

12 lines
163 B
Go
Raw Normal View History

2018-12-31 17:30:59 -08:00
package graphics
import "github.com/FooSoft/lazarus/math"
type TextureId uintptr
type Texture interface {
Id() TextureId
Size() math.Vec2i
Destroy() error
}