Merge pull request #832 from GreYFoX/oypull1
[twcon.git] / src / engine / message.h
blob4f9cb4c1d03673b30949e725807d2bae43104f6d
1 /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
2 /* If you are missing that file, acquire a complete release at teeworlds.com. */
3 #ifndef ENGINE_MESSAGE_H
4 #define ENGINE_MESSAGE_H
6 #include <engine/shared/packer.h>
8 class CMsgPacker : public CPacker
10 public:
11 CMsgPacker(int Type)
13 Reset();
14 AddInt(Type);
18 #endif