2003-03-21 18:49:28 +03:00
|
|
|
#ifndef SERVER_PICTURE_H
|
|
|
|
#define SERVER_PICTURE_H
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
|
|
class AreaLink;
|
|
|
|
|
|
|
|
class ServerPicture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ServerPicture(void);
|
|
|
|
~ServerPicture(void);
|
|
|
|
|
|
|
|
bool InitCheck(void) { return _initialized; }
|
|
|
|
area_id Area(void) { return _area; }
|
|
|
|
int32 GetToken(void) { return _token; }
|
|
|
|
private:
|
|
|
|
|
|
|
|
AreaLink *arealink;
|
|
|
|
bool _initialized;
|
|
|
|
area_id _area;
|
|
|
|
int32 _token;
|
|
|
|
};
|
|
|
|
|
2003-04-14 05:56:41 +04:00
|
|
|
#endif
|