golang-game-framework/rendering/texture2d.go
2022-06-05 12:54:30 -04:00

10 lines
166 B
Go

package rendering
import "github.com/manleydev/golang-game-framework/core"
type Texture2D interface {
Destroy()
GetCenter() core.Vector2
GetRect() core.Rect2D
}