Unfinished: rand map gen

This commit is contained in:
2024-07-12 12:07:38 -04:00
parent 922b88a4a2
commit 83b05b0f89
3 changed files with 152 additions and 6 deletions

View File

@ -19,12 +19,12 @@ int main(int argc, char **argv) {
return RETURN_PANICKED;
}
CC3K game_proc(enabled_features, *in, *out, *log, *rng);
// CC3K game_proc(enabled_features, *in, *out, *log, *rng);
while (game_proc.run() != game_status::terminated) {
out->render();
out->clear();
}
// while (game_proc.run() != game_status::terminated) {
// out->render();
// out->clear();
// }
return RETURN_FINE;
}