Files
cuberite-2a/source/cAuthenticator.h
T

13 lines
276 B
C++
Raw Normal View History

2011-10-03 18:41:19 +00:00
#pragma once
class cBlockingTCPLink;
class cAuthenticator
{
public:
cAuthenticator();
~cAuthenticator();
bool Authenticate( const char* a_PlayerName, const char* a_ServerID );
private:
bool ParseReceived( const char* a_Data, cBlockingTCPLink* a_TCPLink );
};