From ba07c2bc98fdba991b6d6444d57f0f897cf5959f Mon Sep 17 00:00:00 2001 From: schneefux Date: Sun, 12 Jun 2016 20:08:57 +0200 Subject: import full project --- src/global.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/global.c (limited to 'src/global.c') diff --git a/src/global.c b/src/global.c new file mode 100644 index 0000000..d3afdab --- /dev/null +++ b/src/global.c @@ -0,0 +1,33 @@ +#include "global.h" + +char* pScreen; +//pointer to the 3 graybuffers + +char right = True; +char left = True; +//can move? + +char changemap[21][10] = {0}; +char globalmap [20][10] = {0}; +//the two brickmaps: globalmap is the visible one + +char block; +//block type +int xpos = 7, ypos = 3; +char dir; +//position and direction of brick + +char level; +//current level + +unsigned int points = 0; +//points + +char nextdir = Down; +//the direction for the next round + +char nextblock = 1; +//the next block + +char hold = 0; +//the stored brick -- cgit v1.3.1