mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2025-04-09 14:00:12 +00:00
16 lines
286 B
C++
16 lines
286 B
C++
#pragma once
|
|
|
|
#define CMD_PREFIX '/'
|
|
|
|
#include "core/Core.hpp"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Chat {
|
|
void init();
|
|
|
|
void sendServerMessage(CNSocket* sock, std::string msg); // uses MOTD
|
|
std::string sanitizeText(std::string text, bool allowNewlines=false);
|
|
}
|