2018-11-21 21:11:30 +01:00
|
|
|
using Content.Shared.Interfaces;
|
2019-04-15 21:11:38 -06:00
|
|
|
using Robust.Shared.Map;
|
2019-08-04 01:08:55 +02:00
|
|
|
using Robust.Shared.Timing;
|
2018-11-21 21:11:30 +01:00
|
|
|
|
|
|
|
|
namespace Content.Client.Interfaces
|
|
|
|
|
{
|
|
|
|
|
public interface IClientNotifyManager : ISharedNotifyManager
|
|
|
|
|
{
|
|
|
|
|
void Initialize();
|
|
|
|
|
void PopupMessage(ScreenCoordinates coordinates, string message);
|
|
|
|
|
void PopupMessage(string message);
|
2019-08-04 01:08:55 +02:00
|
|
|
void FrameUpdate(FrameEventArgs eventArgs);
|
2018-11-21 21:11:30 +01:00
|
|
|
}
|
|
|
|
|
}
|