summaryrefslogtreecommitdiff
path: root/engine/CoreObjects/Image.go
blob: 96c2da828c432ae3fb74a50340919645f07ec61a (plain)
1
2
3
4
5
6
7
package coreobjects

import rl "github.com/gen2brain/raylib-go/raylib"

type Image interface {
	DrawAt(rl.Vector2)
}