render.h 195 B

1234567891011
  1. #ifndef RENDER_H
  2. #define RENDER_H
  3. #include "door.h"
  4. #include "irc.h"
  5. #include <string>
  6. #include <vector>
  7. void render(std::vector<std::string> irc_msg, door::Door &door, ircClient &irc);
  8. #endif