Allow the windows to be resizeable

This commit is contained in:
2018-12-30 23:19:21 +00:00
parent 73804519b0
commit 6f3ed56b99

View File

@@ -25,6 +25,7 @@ func NewWindow(title string) (*Window, error) {
Title: title,
Bounds: pixel.R(0, 0, float64(*winX), float64(*winY)),
VSync: true,
Resizable: true,
}
pixelWindow, err := pixelgl.NewWindow(cfg)