did astyle on the source files

This commit is contained in:
2024-07-05 12:14:34 -04:00
parent 74de68cf0d
commit 7919c7dbfe
16 changed files with 46 additions and 423 deletions

View File

@ -7,16 +7,16 @@
// The way things are designed to work:
// to be filled...
int main(int argc, char **argv) {
std::unique_ptr<cursor> curse;
std::unique_ptr<input> in;
std::unique_ptr<display> out;
std::unique_ptr<logger> log;
int main(int argc, char **argv) {
std::unique_ptr<cursor> curse;
std::unique_ptr<input> in;
std::unique_ptr<display> out;
std::unique_ptr<logger> log;
feature enabled_features = proc_args(argc, argv, curse, in, out, log);
feature enabled_features = proc_args(argc, argv, curse, in, out, log);
if(enabled_features & FEATURE_PANIC)
std::cerr<<"Wrong arguments you dumbass :)"<<std::endl;
if (enabled_features & FEATURE_PANIC)
std::cerr << "Wrong arguments you dumbass :)" << std::endl;
game game_proc(enabled_features, in, out, log);