mirror of
https://github.com/0TheSpy/Seaside.git
synced 2025-01-11 11:33:01 +08:00
22 lines
382 B
C
22 lines
382 B
C
|
#if !defined( INETMSGHANDLER_H )
|
||
|
#define INETMSGHANDLER_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "inetmessage.h"
|
||
|
|
||
|
class INetChannel;
|
||
|
typedef struct netpacket_s netpacket_t;
|
||
|
|
||
|
class IConnectionlessPacketHandler
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IConnectionlessPacketHandler(void) {};
|
||
|
|
||
|
virtual bool ProcessConnectionlessPacket(netpacket_t* packet) = 0;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif
|