#include "stdlibincl.h" #include #include #include "shell_buffer.h" #include "network_manager.h" int verbose = 4; int startHelp(int argc, char** argv) {} /** * * main function * * here the journey begins */ int main(int argc, char** argv) { // here the pre-arguments are loaded, these are needed to go either to orxonx itself, Help, or Benchmark. int i; for(i = 1; i < argc; ++i) { if(! strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) return startHelp(argc, argv); //else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) showGui = true; } new NetworkManager(); return 0; } bool ShellBuffer::addBufferLineStatic(const char* line, ...) { va_list arguments; vprintf(line, arguments); }