This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
216 B
C++

#pragma once
#include "common.hpp"
namespace big
{
class notify
{
public:
static void above_map(const char* text);
static void blocked_event(const char* name, Player player);
private:
};
}