remove obsolete engine/shared/message.h

This commit is contained in:
Robert Müller 2021-08-14 21:35:52 +02:00
parent 551369cda1
commit 8fa7610463
2 changed files with 0 additions and 12 deletions

View file

@ -1555,7 +1555,6 @@ set_src(ENGINE_SHARED GLOB src/engine/shared
masterserver.cpp
memheap.cpp
memheap.h
message.h
netban.cpp
netban.h
network.cpp

View file

@ -1,11 +0,0 @@
/* (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_SHARED_MESSAGE_H
#define ENGINE_SHARED_MESSAGE_H
class CMessage
{
public:
virtual bool Pack(void *pData, unsigned MaxDataSize);
virtual bool Unpack(const void *pData, unsigned DataSize);
};
#endif