start.hpp 214 B

12345678910
  1. #ifndef __START_HPP__
  2. #define __START_HPP__
  3. #include "net.hpp"
  4. // Once all the networking is set up, start doing whatever we were asked
  5. // to do on the command line
  6. void start(NetIO &netio, char **args);
  7. #endif