blooblib/gui/gui.go

17 lines
173 B
Go
Raw Normal View History

2024-03-24 01:14:26 +01:00
package gui
import . "git.danitheskunk.com/squishy/blooblib"
type gui struct {
}
var Gui gui
func InitGui(size Vec2i) {
Gui = gui{}
}
func DrawGui(target *Image) {
}