Window.shouldClose

class Window
int
shouldClose
()

Examples

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

Meta