All pastes #2074835 Raw Edit

Stuff

public text v1 · immutable
#2074835 ·published 2011-06-05 02:56 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;
}