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