function Sprite(opts) {
	this.src;
	this.x = 0;
	this.y = 0;
	this.w = 0;
	this.h = 0;
	for (idx in opts) { this[idx] = opts[idx]; }
}
