mirror of
https://github.com/yeslayla/golang-game-framework.git
synced 2025-04-27 20:05:01 +02:00
10 lines
166 B
Go
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
|
|
}
|