You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
577 B

/**
* @file plrmsg.h
*
* Interface of functionality for printing the ingame chat messages.
*/
#pragma once
#include <cstdint>
#include <string>
#include <SDL.h>
#include "DiabloUI/ui_flags.hpp"
#include "engine.h"
#include "player.h"
#include "utils/stdcompat/string_view.hpp"
namespace devilution {
void plrmsg_delay(bool delay);
void EventPlrMsg(string_view text, UiFlags style = UiFlags::ColorWhitegold);
void SendPlrMsg(Player &player, string_view text);
void InitPlrMsg();
void DrawPlrMsg(const Surface &out);
} // namespace devilution