mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
17 lines
196 B
C++
17 lines
196 B
C++
#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
|