a2bejwld/a2bejwld/main.c

28 lines
306 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>
2016-07-20 13:17:37 +00:00
#include "ui.h"
2016-07-20 13:17:37 +00:00
int main(void)
{
initUI();
printInstructions();
while (true) {
playGame();
}
return 0;
2016-07-20 13:17:37 +00:00
}