player { x: 1.75, y: 1.5 };

platform {
	x: 1.25, y: 2, w: 99.25, h: 0.25,
};

platform {
	x: -1.25, y: 3.5, w: 2.5, h: 0.25,
};

platform {
	x: -6.25, y: 2, w: 5, h: 0.25,
};

wall {
	x: -6.25, y: 0, w: 1.5, h: 0.25,
};

platform {
	x: 2, y: -2, w: 3, h: 0.25,
};

wall {
	x: 7, y: -2, w: 3, h: 0.25,
};

platform {
	x: 0, y: 0, w: 3, h: 0.25,
};

enemyfollower { x: 20, y: 1.5 };
		
player { x: 1.75, y: 1.875 };
platform {
	x: 2.5, y: 3.75, w: 2.5, h: 0.5,
	pathType: "loop",
	pathDraw: true,
	path: [
		[ 0, 0, 20 ],
		[ 7.5, 0, 100 ],
		[ 7.5, 5, 20 ],
		[ 0, 5, 100 ],
	],
};

platform {
	x: 20, y: 3.75, w: 2.5, h: 0.5,
	pathDraw: true,
	path: [
		[ 0, 0 ],
		[ -7.5, -1.25 ],
	],
};

wall {
	x: 12.5, y: 10, w: 5, h: 0.5,
};

victory {
	x: 20.875, y: 3, w: 2.5, h: 0.5,
	physics: true,
};

platform { x: 2.5, y: 1.25, w: 2.5, h: 0.5 };