Skip to content

Instantly share code, notes, and snippets.

@StonedXander
StonedXander / gist:973262
Created May 15, 2011 15:57 — forked from BlockoS/gist:973257
Just a simple maze generator
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <vector>
typedef struct {
unsigned int x;
unsigned int y;
unsigned char direction;
} Coordinate;