a2bejwld/a2bejwld/main.c

29 lines
316 B
C
Raw Normal View History

2016-07-20 13:17:37 +00:00
/*
* main.c
* a2bejwld
*
* Created by Jeremy Rand on 2016-07-20.
* Copyright (c) 2016 Jeremy Rand. All rights reserved.
*
*/
#include <stdbool.h>
#include <stdlib.h>
2016-07-20 13:17:37 +00:00
#include "ui.h"
2016-07-20 13:17:37 +00:00
// Implementation
2016-07-20 13:17:37 +00:00
int main(void)
{
initUI();
printInstructions();
2016-07-24 22:22:37 +00:00
playGame();
return 0;
2016-07-20 13:17:37 +00:00
}