mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
13 lines
247 B
C++
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__
|