#ifndef __world_h__
#define __world_h__

typedef struct World {
	int x, y;	/* Scrolling offsets */
} World;

#endif

