mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
10 lines
214 B
C
10 lines
214 B
C
|
#ifndef ENGINE_SHARED_MESSAGE_H
|
||
|
#define ENGINE_SHARED_MESSAGE_H
|
||
|
class CMessage
|
||
|
{
|
||
|
public:
|
||
|
virtual bool Pack(void *pData, unsigned MaxDataSize);
|
||
|
virtual bool Unpack(const void *pData, unsigned DataSize);
|
||
|
};
|
||
|
#endif
|