chatcommand_sendtoall.h 352 B

1234567891011121314
  1. #ifndef __CHATCOMMAND_SENDTOALL_H
  2. #define __CHATCOMMAND_SENDTOALL_H
  3. #include "chatcommand.h"
  4. #include "message.h"
  5. #include "chatclient.h"
  6. // Sends a message to all users. Requires server password.
  7. class chatcommand_sendtoall:chatcommand
  8. {
  9. public:
  10. static bool processmessage(char first_letter,message *received_message,chatclient *client);
  11. };
  12. #endif