ddnet/src/engine/message.h
2010-11-20 21:26:06 +01:00

19 lines
388 B
C++

/* (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_MESSAGE_H
#define ENGINE_MESSAGE_H
#include <engine/shared/packer.h>
class CMsgPacker : public CPacker
{
public:
CMsgPacker(int Type)
{
Reset();
AddInt(Type);
}
};
#endif