All pastes #2074836 Raw Edit

Unnamed

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