Size - CreedVI/Raylib-J GitHub Wiki
The Size data structure is used to store two integers as an width, height pair.
Size()
Size Screen = new Size();Size with the value of 0, 0
Size(int width, int height)
Size Screen = new Size(1920, 1080);Size with the value of 1920, 1080