about summary refs log tree commit diff
path: root/src/engine/shared/message.h
blob: 4e67a8e1d5ebee99ad7c7290975e3351ca7c1416 (plain)
1
2
3
4
5
6
7
8
9
#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