blob: 8d9d860e1799319efcfc6eff2cd1d57ff7805728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
#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
|