mirror of
https://github.com/DarkflameUniverse/DarkflameServer
synced 2024-08-30 18:43:58 +00:00
12 lines
211 B
C++
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__
|