forked from metin2/client
14 lines
230 B
C
14 lines
230 B
C
|
#pragma once
|
||
|
|
||
|
class CPythonExceptionSender : public IPythonExceptionSender
|
||
|
{
|
||
|
public:
|
||
|
CPythonExceptionSender();
|
||
|
virtual ~CPythonExceptionSender();
|
||
|
|
||
|
void Send();
|
||
|
|
||
|
protected:
|
||
|
std::set<DWORD> m_kSet_dwSendedExceptionCRC;
|
||
|
};
|