fbic

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
#include <stdio.h>

// TODO use bitfields have two states to have 
typedef enum {
	TOP,
	LEFT,
	RIGHT,
	FRONT,
	BACK,
	BOTTOM,
	MIDDLE // for interpretting left top to 
} CameraStates;

TOP, LEFT
TOP, RIGHT
BOTTOM, LEFT
BOTTOM, RIGHT


// TODO 

int main(int argc, char* argv[]) {
	printf("this is us\n");
	return 0;
}