Unified those messy FrameEventArgs.

This commit is contained in:
Pieter-Jan Briers
2019-08-04 01:08:55 +02:00
parent a246d7e48d
commit 02da078baf
10 changed files with 29 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
using Content.Shared.Interfaces;
using Robust.Client;
using Robust.Shared.Map;
using Robust.Shared.Timing;
namespace Content.Client.Interfaces
{
@@ -9,6 +10,6 @@ namespace Content.Client.Interfaces
void Initialize();
void PopupMessage(ScreenCoordinates coordinates, string message);
void PopupMessage(string message);
void FrameUpdate(RenderFrameEventArgs eventArgs);
void FrameUpdate(FrameEventArgs eventArgs);
}
}