moving repo

This commit is contained in:
2024-07-05 00:46:02 -04:00
parent 325a1d1350
commit 7aed073fa6
11 changed files with 95 additions and 31 deletions

View File

@ -13,18 +13,18 @@
// Notes:
// 1. game sends all output to display and gets all input from input
// 2. display either renders to file (console) or curse
// 3.
// 3.
int main(int argc, char **argv) {
logger log;
cursor curse;
input in(curse);
feature enabled_features = proc_args(argc,argv,curse,in,log);
logger log;
cursor curse;
input in(curse);
feature enabled_features = proc_args(argc, argv, curse, in, log);
display out(curse, enabled_features);
// binds display to the game
game game_proc(in, out, argc, argv);
while (game_proc.run() != game_status::terminated)
out.render();