Initial commit

This commit is contained in:
2022-06-05 12:54:30 -04:00
commit cb1bdec005
21 changed files with 702 additions and 0 deletions

9
rendering/texture2d.go Normal file
View File

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