16 lines
458 B
C#
16 lines
458 B
C#
using Content.Shared.Notification;
|
|
using Content.Shared.Notification.Managers;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Timing;
|
|
|
|
namespace Content.Client.Notifications.Managers
|
|
{
|
|
public interface IClientNotifyManager : ISharedNotifyManager
|
|
{
|
|
void Initialize();
|
|
void PopupMessage(ScreenCoordinates coordinates, string message);
|
|
void PopupMessage(string message);
|
|
void FrameUpdate(FrameEventArgs eventArgs);
|
|
}
|
|
}
|