chatcommand_simplegameusersetdata.h 467 B

123456789101112131415
  1. #ifndef __CHATCOMMAND_SIMPLEGAMEUSERSETDATA_H
  2. #define __CHATCOMMAND_SIMPLEGAMEUSERSETDATA_H
  3. #include "chatcommand.h"
  4. #include "message.h"
  5. #include "chatclient.h"
  6. // simplegameusersetdata(messageid,gameid,userdata)
  7. // Sets the data for a user in a game. Returns a success message or an error message.
  8. class chatcommand_simplegameusersetdata:chatcommand
  9. {
  10. public:
  11. static bool processmessage(char first_letter,message *received_message,chatclient *client);
  12. };
  13. #endif