IgnoreList: Add and Populate fully working

This commit is contained in:
David Markowitz
2023-11-18 03:55:12 -08:00
parent 8e84cafdfa
commit df3515f474
5 changed files with 153 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#ifndef __CHATIGNORELIST__H__
#define __CHATIGNORELIST__H__
struct Packet;
namespace ChatIgnoreList {
void GetIgnoreList(Packet* packet);
void AddIgnore(Packet* packet);
};
#endif //!__CHATIGNORELIST__H__