mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 18:18:18 +00:00
3be8a592e5
Purely automatic change. In case of conflict with this change, apply the other change and rerun the formatting to restore it: $ python scripts/fix_style.py
23 lines
574 B
C++
23 lines
574 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>
|
|
#include <engine/shared/uuid_manager.h>
|
|
|
|
class CMsgPacker : public CPacker
|
|
{
|
|
public:
|
|
int m_MsgID;
|
|
bool m_System;
|
|
bool m_NoTranslate;
|
|
CMsgPacker(int Type, bool System = false, bool NoTranslate = false) :
|
|
m_MsgID(Type), m_System(System), m_NoTranslate(NoTranslate)
|
|
{
|
|
Reset();
|
|
}
|
|
};
|
|
|
|
#endif
|