mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
13 lines
284 B
C++
13 lines
284 B
C++
#ifndef ISERVER_H
|
|
#define ISERVER_H
|
|
#include "inetchannel.h"
|
|
#include "inetmsghandler.h"
|
|
|
|
abstract_class IServer : public IConnectionlessPacketHandler
|
|
{
|
|
public:
|
|
virtual ~IServer(void) = 0;
|
|
virtual bool ConnectionlessPacketHandler(netpacket_t* pInPacket) = 0;
|
|
};
|
|
|
|
#endif // ISERVER_H
|