DarkflameServer/dChatServer/ChatIgnoreList.h
2023-11-18 03:55:12 -08:00

12 lines
211 B
C++

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