20 lines
552 B
C++
20 lines
552 B
C++
#pragma once
|
|
#include "../服务器组件/ServerControl.h"
|
|
|
|
//数值掩码
|
|
#define LOGIC_MASK_COLOR 0xF0 //花色掩码
|
|
#define LOGIC_MASK_VALUE 0x0F //数值掩码
|
|
|
|
|
|
class CServerControlItemSink : public IServerControl
|
|
{
|
|
public:
|
|
CServerControlItemSink(void);
|
|
virtual ~CServerControlItemSink(void);
|
|
|
|
public:
|
|
//服务器控制
|
|
virtual bool __cdecl ServerControl(CMD_S_CheatCard *pCheatCard, ITableFrame * pITableFrame);
|
|
virtual bool __cdecl ServerControl(CMD_S_CheatCard *pCheatCard, ITableFrame * pITableFrame, IServerUserItem * pIServerUserItem);
|
|
};
|