Alright so it's possible to use a separate xml file for each level and not have loading times for each one?


Here is something I put together really quick. Would this be sufficient?

Code:
<levels>
	
	
	
	<level name="sidewalk">
	
		<items>
		
			<item x="50" y="200" name="blob" description="looks like some sort of blob i guess..."/>
		
		</items>
	
	</level>
	
	
	
	
	<level name="hotel">
		
		<items>
			
			<item x="75" y="26" name="window" description="you can see a fire escape next to the balcony"/>
		
		</items>
		
	</level>
	
</levels>