123456789101112131415 |
- #ifndef __CHATCOMMAND_SIMPLEGAMEUSERGETDATA_H
- #define __CHATCOMMAND_SIMPLEGAMEUSERGETDATA_H
- #include "chatcommand.h"
- #include "message.h"
- #include "chatclient.h"
- // simplegameusergetdata(messageid,gameid,username)
- // Gets the data for a user in a game. Returns a simplegameuserdata message or an error message. If username is left out, returns the user data for all users.
- class chatcommand_simplegameusergetdata:chatcommand
- {
- public:
- static bool processmessage(char first_letter,message *received_message,chatclient *client);
- };
- #endif
|