mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
17 lines
274 B
C
17 lines
274 B
C
|
// TODO: Implement EmailSender.h
|
||
|
|
||
|
#ifndef __EMAIL_SENDER_H
|
||
|
#define __EMAIL_SENDER_H
|
||
|
|
||
|
class TCPInterface;
|
||
|
#include "NetworkTypes.h"
|
||
|
|
||
|
class EmailSender
|
||
|
{
|
||
|
public:
|
||
|
protected:
|
||
|
char *GetResponse(TCPInterface *tcpInterface, const PlayerID &emailServer, bool doPrintf);
|
||
|
};
|
||
|
|
||
|
#endif
|