input.h 326 B

1234567891011121314151617
  1. #ifndef INPUT_H
  2. #define INPUT_H
  3. #include "door.h"
  4. #include "irc.h"
  5. extern bool allow_part;
  6. extern bool allow_join;
  7. extern int ms_input_delay;
  8. void clear_input(door::Door &d);
  9. void restore_input(door::Door &d);
  10. void parse_input(door::Door &door, ircClient &irc);
  11. bool check_for_input(door::Door &d, ircClient &irc);
  12. #endif