diff options
Diffstat (limited to 'src/ctaklm.c')
| -rw-r--r-- | src/ctaklm.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/ctaklm.c b/src/ctaklm.c index 8330012..bbf815c 100644 --- a/src/ctaklm.c +++ b/src/ctaklm.c @@ -1,8 +1,18 @@ #include <stdlib.h> #include <stdio.h> + #include <tak.h> int main(int argc, char **argv) { - cell_t x = CELL_EMPTY_VALUE; - printf("Test %d\n",x); + init_game(); + + enum ACTION_RESULT res = try_place(0, 0x0001, STONE_FLAT); + res = try_place(1, 0x0001, STONE_FLAT); + const uint8_t drops[1] = {1}; + res = try_move(1, M_LEFT, 1, drops); + + printf("Result: %d\n",res); + printf("%o %o \n",colours[0],celldat[0]); + + free_game(); } |
