mirror of
https://github.com/yeslayla/golang-game-framework.git
synced 2025-01-14 04:53:32 +01: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
|
|
}
|