Files
Cleaner/src/Global.h
T
2025-03-22 23:32:42 +08:00

19 lines
496 B
C++

#pragma once
// IWYU pragma: begin_exports
#include "Mod.h"
#include "gmlib/include_lib.h"
#include "gmlib/include_ll.h"
#include "ila/include_all.h"
#include <regex>
// IWYU pragma: end_exports
#define S(x) std::to_string(x)
extern void RegisterCommands();
namespace Helper {
extern void broadcastMessage(std::string_view msg);
extern void broadcastToast(std::string_view msg);
} // namespace Helper
extern std::string tr(std::string const& key, std::vector<std::string> const& params = {});