shithub: map

ref: c6a16dc58a2cb3152cd0b08b81fbf85df713280b
dir: /dat.h/

View raw version
typedef struct GPos GPos;
typedef struct GBundle GBundle;
typedef struct GProvider GProvider;

struct GPos {
	double lon;
	double lat;
};

struct GBundle {
	int x;
	int y;
	int z;
};

struct GProvider {
	char* (*formaturl)(GBundle);
};