Exemplo n.º 1
0
/**
 *  zeichnet das Fenster.
 *
 *  @author OLiver
 */
bool Window::Draw(void)
{
	if(visible)
		return Draw_();

	return true;
}
Exemplo n.º 2
0
/**
 *  zeichnet das Fenster.
 */
bool Window::Draw()
{
    if(visible_)
        return Draw_();

    return true;
}