Allow server to send cursor-located popup messages.

This commit is contained in:
Pieter-Jan Briers
2020-05-23 18:45:47 +02:00
parent 7346774616
commit 36b5326a37
4 changed files with 46 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ namespace Content.Shared.Interfaces
{
void PopupMessage(IEntity source, IEntity viewer, string message);
void PopupMessage(GridCoordinates coordinates, IEntity viewer, string message);
void PopupMessageCursor(IEntity viewer, string message);
}
public static class NotifyManagerExt