InputDevice.ResizedStatus

Status of window resizing.

Implicitly converts info bool, so checks like if(input.resized) can be made.

class InputDevice
struct ResizedStatus {
bool resized;
}

Alias This

resized

Members

Functions

height
int height()

Get the new window height. Can only be called if resized.

width
int width()

Get the new window width. Can only be called if resized.

Meta