about summary refs log tree commit diff
path: root/src/engine/message.h
blob: 3ffc488f9ccdcbdc0101674e9700588643e735aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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