DarkflameServer/dChatServer/ChatIgnoreList.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
247 B
C
Raw Normal View History

#ifndef __CHATIGNORELIST__H__
#define __CHATIGNORELIST__H__
struct Packet;
namespace ChatIgnoreList {
void GetIgnoreList(Packet* packet);
void AddIgnore(Packet* packet);
2023-11-19 01:33:52 +00:00
void RemoveIgnore(Packet* packet);
};
#endif //!__CHATIGNORELIST__H__