blob: 5551504af93006d556aa12e9ed94d05b0bbf0acb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef TMW_HPP
#define TMW_HPP
#include "../common/const_array.hpp"
#include "../common/dumb_ptr.hpp"
#include "map.hpp"
int tmw_CheckChatSpam(dumb_ptr<map_session_data> sd, const char *message);
void tmw_GmHackMsg(const char *line);
void tmw_TrimStr(char *str);
#endif // TMW_HPP
|