Prototype

int shouldClose();

Example

auto w = new Window(640, 480, "Test");
while(!w.shouldClose()) {
	// Main app loop
}