public Tuple <int, int> GetSize() { int width = 0, height = 0; Glfw.GetWindowSize(this, ref width, ref height); return(new Tuple <int, int>(width, height)); }
public void GetSize(ref int width, ref int height) { Glfw.GetWindowSize(this, ref width, ref height); }