func SetWindowSize(w, h int) { glfw.SetWindowSize(w, h) onResize(w, h) }
func reloadSettings() { glfw.SetWindowSize(Settings.Resolution.Width, Settings.Resolution.Height) }
func (w *window) SetSize(width, height int) { glfw.SetWindowSize(width, height) }