did astyle on the source files
This commit is contained in:
16
src/main.cc
16
src/main.cc
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user