FeatherMC/src/network/IListenerInterface.h

15 lines
279 B
C
Raw Normal View History

2020-07-29 01:46:31 +01:00
#pragma once
#include "../Common.h"
namespace Feather::Network
{
class TCPClient;
class abstract IListenerInterface
{
public:
virtual void OnClientConnect(TCPClient&& client) = 0;
virtual void OnClientDisconnect(TCPClient& client) = 0;
};
}