All pastes #2074837 Raw Edit

Unnamed

public cpp v1 · immutable
#2074837 ·published 2011-06-05 02:59 UTC
rendered paste body
bool editingWindow = false;typedef struct{	unsigned int r, g, b, a;} Color;Color Black;Black.a = 255;Black.r, Black.g, Black.b = 0;bool createQuad(double top_l, double top_r, double bot_r, double bot_l, Color color = Black){	if (!editingWindow){		return false;	}	return true;}