ddnet/src/engine/message.h

17 lines
196 B
C
Raw Normal View History

2010-05-29 07:25:38 +00:00
#ifndef ENGINE_MESSAGE_H
#define ENGINE_MESSAGE_H
2009-10-29 12:14:31 +00:00
2010-05-29 07:25:38 +00:00
#include <engine/shared/packer.h>
2009-10-29 12:14:31 +00:00
2010-05-29 07:25:38 +00:00
class CMsgPacker : public CPacker
2009-10-29 12:14:31 +00:00
{
public:
2010-05-29 07:25:38 +00:00
CMsgPacker(int Type)
{
Reset();
AddInt(Type);
}
2009-10-29 12:14:31 +00:00
};
2010-05-29 07:25:38 +00:00
#endif