Beispiel #1
0
        public Tuple <int, int> GetSize()
        {
            int width = 0, height = 0;

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