simplechatgameuser.h 358 B

123456789101112131415161718
  1. #ifndef __SIMPLECHATGAMEUSER_H
  2. #define __SIMPLECHATGAMEUSER_H
  3. #include "idisposable.h"
  4. #include "chatclient.h"
  5. #include "datablock.h"
  6. class simplechatgameuser:public idisposable
  7. {
  8. public:
  9. simplechatgameuser();
  10. ~simplechatgameuser();
  11. void dispose();
  12. chatclient *client;
  13. datablock *username;
  14. datablock *userdata;
  15. simplechatgameuser *clone();
  16. };
  17. #endif