DarkflameServer/dChatServer/ChatIgnoreList.h
2023-11-18 17:33:52 -08:00

13 lines
247 B
C++

#ifndef __CHATIGNORELIST__H__
#define __CHATIGNORELIST__H__
struct Packet;
namespace ChatIgnoreList {
void GetIgnoreList(Packet* packet);
void AddIgnore(Packet* packet);
void RemoveIgnore(Packet* packet);
};
#endif //!__CHATIGNORELIST__H__