123456789101112131415161718 |
- #ifndef __SIMPLECHATGAMEUSER_H
- #define __SIMPLECHATGAMEUSER_H
- #include "idisposable.h"
- #include "chatclient.h"
- #include "datablock.h"
- class simplechatgameuser:public idisposable
- {
- public:
- simplechatgameuser();
- ~simplechatgameuser();
- void dispose();
- chatclient *client;
- datablock *username;
- datablock *userdata;
- simplechatgameuser *clone();
- };
- #endif
|