Files
tbd-station-14/Content.Client/Interfaces/IClientNotifyManager.cs
2019-04-15 21:11:38 -06:00

15 lines
399 B
C#

using Content.Shared.Interfaces;
using Robust.Client;
using Robust.Shared.Map;
namespace Content.Client.Interfaces
{
public interface IClientNotifyManager : ISharedNotifyManager
{
void Initialize();
void PopupMessage(ScreenCoordinates coordinates, string message);
void PopupMessage(string message);
void FrameUpdate(RenderFrameEventArgs eventArgs);
}
}